about summary refs log tree commit diff stats
path: root/cpp/002main.test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/002main.test.cc')
-rw-r--r--cpp/002main.test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/002main.test.cc b/cpp/002main.test.cc
index 36e6a669..52db64bb 100644
--- a/cpp/002main.test.cc
+++ b/cpp/002main.test.cc
@@ -2,6 +2,7 @@ void test_parse() {
   compile("recipe main [\n"
           "  1:integer <- copy 23:literal\n"
           "]\n");
+  cout << '\n'; DUMP("parse");
   CHECK(Recipe_number.find("main") != Recipe_number.end());
   recipe r = Recipe[Recipe_number["main"]];
   vector<instruction>::iterator i = r.step.begin();
@@ -24,6 +25,7 @@ void test_parse2() {
   compile("recipe main [\n"
           "  1:integer, 2:integer <- copy 23:literal\n"
           "]\n");
+  cout << '\n'; DUMP("parse");
   CHECK(Recipe_number.find("main") != Recipe_number.end());
   recipe r = Recipe[Recipe_number["main"]];
   vector<instruction>::iterator i = r.step.begin();