about summary refs log tree commit diff stats
path: root/cpp/050scenario
diff options
context:
space:
mode:
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();