about summary refs log tree commit diff stats
path: root/cpp/013run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-08 00:32:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-08 00:32:23 -0700
commit2b7a7498f98d1696adc2c6949f8d53f7fa18109e (patch)
treed42908812534d3f00528e137877fdeb5dd872772 /cpp/013run
parent052535fd401bf3521efaf9e5775ad21ef1ec9eaa (diff)
downloadmu-2b7a7498f98d1696adc2c6949f8d53f7fa18109e.tar.gz
1034 - more test isolation
The layers are a mess now, but we'll take care of that later.
Diffstat (limited to 'cpp/013run')
-rw-r--r--cpp/013run4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/013run b/cpp/013run
index e226bc01..1ccbb3b3 100644
--- a/cpp/013run
+++ b/cpp/013run
@@ -104,6 +104,7 @@ void load(string filename) {
   }
   fin >> std::noskipws;
   add_recipes(fin);
+  transform_all();
   fin.close();
 }
 
@@ -123,10 +124,11 @@ void run(string form) {
 
 :(before "End Setup")
 for (size_t i = 0; i < recipes_added_by_test.size(); ++i) {
-//?   cout << "AAA clearing " << Recipe[recipes_added_by_test[i]].name << '\n'; //? 1
+//?   cout << "AAA clearing " << Recipe[recipes_added_by_test[i]].name << '\n'; //? 2
   Recipe_number.erase(Recipe[recipes_added_by_test[i]].name);
   Recipe.erase(recipes_added_by_test[i]);
 }
+// Clear state for recipes_added_by_test
 recipes_added_by_test.clear();
 
 :(code)