diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 00:13:11 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 00:15:26 -0700 |
commit | 26785f2a7c2937765f1c0c9e26ce6b80aa4f8dfe (patch) | |
tree | 86bf3ba3ef9c54f664515aa008d6bc32e96449bc /cpp/013run | |
parent | 9ea7648336251d440a9cd8d91112254e8b38268c (diff) | |
download | mu-26785f2a7c2937765f1c0c9e26ce6b80aa4f8dfe.tar.gz |
1031 - stop clearing recipes after every test
I think the string-equal scenarios are failing to fail. But we'll fix them once we wrap up test isolation.
Diffstat (limited to 'cpp/013run')
-rw-r--r-- | cpp/013run | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/013run b/cpp/013run index 4917271b..e226bc01 100644 --- a/cpp/013run +++ b/cpp/013run @@ -80,8 +80,6 @@ inline bool done(routine& rr) { return running_at(rr) >= steps(rr).size(); } -:(after "int main") - load("core.mu"); :(before "End Main") if (argc > 1) { setup(); @@ -125,6 +123,7 @@ 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 Recipe_number.erase(Recipe[recipes_added_by_test[i]].name); Recipe.erase(recipes_added_by_test[i]); } |