17 of 124 compiler tests passing

This commit is contained in:
water
2020-09-07 19:17:48 -04:00
parent ee4eb9f128
commit 1394cf13cd
21 changed files with 449 additions and 15 deletions
+6
View File
@@ -111,6 +111,12 @@ TEST(CompilerAndRuntime, CompilerTests) {
runner.run_test("test-get-symbol-1.gc", {"1342756\n"}); // 0x147d24 in hex
runner.run_test("test-get-symbol-2.gc", {"1342764\n"}); // 0x147d2c in hex
runner.run_test("test-define-1.gc", {"17\n"});
runner.run_test("test-nested-blocks-1.gc", {"7\n"});
runner.run_test("test-nested-blocks-2.gc", {"8\n"});
runner.run_test("test-nested-blocks-3.gc", {"7\n"});
runner.run_test("test-goto-1.gc", {"3\n"});
runner.run_test("test-defglobalconstant-1.gc", {"17\n"});
runner.run_test("test-defglobalconstant-2.gc", {"18\n"});
compiler.shutdown_target();
runtime_thread.join();