diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-07 23:48:22 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-07 23:57:40 -0700 |
commit | 9ea7648336251d440a9cd8d91112254e8b38268c (patch) | |
tree | 8c2128b06e56b0c7d504076e49c4fcd5821356a2 /cpp/026new | |
parent | f5f4b698533b3d7a5016d1d80c5d59e2c2d8ea6e (diff) | |
download | mu-9ea7648336251d440a9cd8d91112254e8b38268c.tar.gz |
1030 - better test isolation for break/loop
I've been resetting all recipes after every single test, but the arc version has shown that this gets slow all too quickly. And the longer I wait to fix it the harder it gets to fix. Already, boy, were this and the next couple of commits hard to track down.
Diffstat (limited to 'cpp/026new')
-rw-r--r-- | cpp/026new | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/026new b/cpp/026new index e541d923..ee1fd2c5 100644 --- a/cpp/026new +++ b/cpp/026new @@ -37,7 +37,7 @@ if (inst.operation == Recipe_number["new"]) { :(before "End Globals") // Operator to look at elements of arrays. -const int NEW = 24; +const int NEW = 30; :(before "End Primitive Recipe Numbers") Recipe_number["new"] = NEW; assert(Next_recipe_number == NEW); |