about summary refs log tree commit diff stats
path: root/cpp/050scenario
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 20:36:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 20:36:25 -0700
commit0acfaaef6a402d332f2c1e83424e9d4d0ada7455 (patch)
tree4c2912b33a27bda361d2b4227954e84801eb366b /cpp/050scenario
parent7f931ef0f27f2815ca435bd63f3aa77329c2f096 (diff)
downloadmu-0acfaaef6a402d332f2c1e83424e9d4d0ada7455.tar.gz
1088 - start porting the 'buffer' type
Diffstat (limited to 'cpp/050scenario')
-rw-r--r--cpp/050scenario5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/050scenario b/cpp/050scenario
index 9c29d971..199fd692 100644
--- a/cpp/050scenario
+++ b/cpp/050scenario
@@ -19,9 +19,12 @@ for (size_t i = 0; i < Scenarios.size(); ++i) {
   Trace_file = Scenarios[i].name;
   START_TRACING_UNTIL_END_OF_SCOPE
 //?   Trace_stream->dump_layer = "all"; //? 1
+//?   cout << "before: " << Memory[1] << '\n'; //? 1
+//?   Trace_stream->dump_layer = "all"; //? 1
 //?   cout << "Before:\n";  dump_memory(); //? 1
-//?   cout << Scenarios[i].to_run; //? 1
+//?   cout << Scenarios[i].to_run; //? 2
   run(Scenarios[i].to_run);
+//?   cout << "after: " << Memory[1] << '\n'; //? 1
 //?   cout << "After:\n";  dump_memory(); //? 1
   for (map<int, int>::iterator p = Scenarios[i].memory_expectations.begin();
        p != Scenarios[i].memory_expectations.end();