Make all tests hermetic, only the tests with kernel left

This commit is contained in:
Tyler Wilding
2020-10-09 13:23:41 -04:00
parent df6e6dd2a2
commit 83f2751795
43 changed files with 98 additions and 18 deletions
+3 -3
View File
@@ -57,9 +57,9 @@ Compiler StringTests::compiler;
GoalTest::CompilerTestRunner StringTests::runner;
TEST_F(StringTests, Constants) {
std::string expected = "\"test string!\"";
runner.run_static_test(env, testCategory, "string-constant-1.static.gc", {expected}, expected.size());
// TODO - runner.run_static_test(env, testCategory, "string-constant-2.static.gc", {});
// TODO - runner.run_static_test(env, testCategory, "string-constant-1.static.gc");
std::string expected = "\"test string!\"";
runner.run_static_test(env, testCategory, "string-constant-2.static.gc", {expected}, expected.size());
}
TEST_F(StringTests, Symbols) {