From 6cc8cd7c5a96d8ae55a6a30a2cc6bad8df3ce00a Mon Sep 17 00:00:00 2001
From: Daniel Savchenko <dsavchenko@delors.informatik.rwth-aachen.de>
Date: Tue, 17 Dec 2024 15:41:00 +0100
Subject: [PATCH] changed gtest_output:xml= to output.junit

---
 tests/run_tests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/run_tests.py b/tests/run_tests.py
index 689b8b38..e9b3ec39 100644
--- a/tests/run_tests.py
+++ b/tests/run_tests.py
@@ -184,7 +184,7 @@ print("Working directory for test execution: " + os.getcwd(), flush=True)
 
 # call ctest
 ctest = subprocess.run(
-    [ctest_executable, "-C", "Debug", "--no-tests=error", "--no-compress-output", "--output-on-failure","--gtest_output=xml:report.xml"])
+    [ctest_executable, "-C", "Debug", "--no-tests=error", "--no-compress-output", "--output-on-failure","--output-junit report.xml"])
 
 print("Return Code: ", ctest.returncode)
 
-- 
GitLab