diff options
author | rune-scape <allie.smith.epic@gmail.com> | 2024-07-23 12:58:58 -0700 |
---|---|---|
committer | rune-scape <spartacrafter@gmail.com> | 2024-07-23 12:59:22 -0700 |
commit | 298904d74e9a2c17442157687911fbc60fb06d8d (patch) | |
tree | 587a85ca03bf4ff08e35140eae6407ee725e284f /modules/gdscript | |
parent | 8e36f98ea5b5ab4c1fb5249f94b61a7bbfb379a1 (diff) | |
download | redot-engine-298904d74e9a2c17442157687911fbc60fb06d8d.tar.gz |
GDScriptTestRunner: Fix compiler error output
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/tests/gdscript_test_runner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/gdscript_test_runner.cpp b/modules/gdscript/tests/gdscript_test_runner.cpp index fbfa4a0a79..025fcbd32a 100644 --- a/modules/gdscript/tests/gdscript_test_runner.cpp +++ b/modules/gdscript/tests/gdscript_test_runner.cpp @@ -622,7 +622,7 @@ GDScriptTest::TestResult GDScriptTest::execute_test_code(bool p_is_generating) { enable_stdout(); result.status = GDTEST_COMPILER_ERROR; result.output = get_text_for_status(result.status) + "\n"; - result.output = compiler.get_error(); + result.output += compiler.get_error() + "\n"; if (!p_is_generating) { result.passed = check_output(result.output); } |