about summary refs log tree commit diff stats
path: root/cpp/031scenario
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-12 23:29:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-12 23:33:49 -0700
commit43d2d20e55c052c5844a38d0d87526f68c7e2217 (patch)
tree9c85c2b09adbd9f40836649875310c5b23a3ceb6 /cpp/031scenario
parentd03028a3035fc514a694a89dcec9429625c9217c (diff)
downloadmu-43d2d20e55c052c5844a38d0d87526f68c7e2217.tar.gz
1058 - scenarios can now check trace
Diffstat (limited to 'cpp/031scenario')
-rw-r--r--cpp/031scenario3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/031scenario b/cpp/031scenario
index f3bd582c..c595ce82 100644
--- a/cpp/031scenario
+++ b/cpp/031scenario
@@ -1,8 +1,10 @@
+//: Allow tests to be written in mu files.
 :(before "End Types")
 struct scenario {
   string name;
   string to_run;
   map<int, int> memory_expectations;
+  // End scenario Fields
 };
 
 :(before "End Globals")
@@ -28,6 +30,7 @@ for (size_t i = 0; i < Scenarios.size(); ++i) {
       Passed = false;
     }
   }
+  // End Scenario Checks
   if (Passed) cerr << ".";
 }