diff options
author | ThreeRhinosInAnElephantCostume <myrealstemail@protonmail.com> | 2021-09-13 22:59:28 +0200 |
---|---|---|
committer | ThreeRhinosInAnElephantCostume <myrealstemail@protonmail.com> | 2021-09-13 22:59:28 +0200 |
commit | 2c71134aa40b7aeb092531403db0d5f43fd13a1f (patch) | |
tree | cc70098792fd33e48c864d8e99de00fcc1e91fb4 /modules/gdscript/tests | |
parent | 0b60b9f75cfc0afea3396e19d0afb250dd61f090 (diff) |
Fix an undefined behaviour
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/gdscript_test_runner.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdscript/tests/gdscript_test_runner.cpp b/modules/gdscript/tests/gdscript_test_runner.cpp index f65402b578..c383830c82 100644 --- a/modules/gdscript/tests/gdscript_test_runner.cpp +++ b/modules/gdscript/tests/gdscript_test_runner.cpp @@ -415,6 +415,7 @@ GDScriptTest::TestResult GDScriptTest::execute_test_code(bool p_is_generating) { TestResult result; result.status = GDTEST_OK; result.output = String(); + result.passed = false; Error err = OK; @@ -498,6 +499,8 @@ GDScriptTest::TestResult GDScriptTest::execute_test_code(bool p_is_generating) { } // Script files matching this pattern are allowed to not contain a test() function. if (source_file.match("*.notest.gd")) { + enable_stdout(); + result.passed = check_output(result.output); return result; } // Test running. |