about summary refs log tree commit diff stats
path: root/cpp/010vm
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-22 12:17:16 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-22 12:17:16 -0700
commitdf0b469f26025ec7f7f7cc88439a8b68c396b97c (patch)
tree09161cf405ad5daa5c27865b861413f09b7baced /cpp/010vm
parentd16dee594404a49f68df93f92efa1790e7a17273 (diff)
downloadmu-df0b469f26025ec7f7f7cc88439a8b68c396b97c.tar.gz
1128
Reorganized commandline handling to perform test space assertion in just
one place at the right layer. Hopefully this issue will not bite us
again.
Diffstat (limited to 'cpp/010vm')
-rw-r--r--cpp/010vm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm b/cpp/010vm
index 0dbafc03..92e712d3 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -153,7 +153,7 @@ assert(MAX_PRIMITIVE_RECIPES < 100);  // level 0 is primitives; until 99
 Next_recipe_number = 100;
 // End Load Recipes
 delete Trace_stream;  Trace_stream = new trace_stream;
-:(after "void run_tests()")
+:(before "End Test Run Initialization")
 assert(Next_recipe_number < 1000);  // functions being tested didn't overflow into test space
 :(before "End Setup")
 Next_recipe_number = 1000;  // consistent new numbers for each test