fixed #123 - changed the output style in the console - gcc/clang output with :n: around line numbers and other compilers output with (n) - there is also a documented option for this. Also changed lots of code - thank god I moved to streams!
!!! output not regenerated yet - next commit!
diff --git a/scripts/cmake/common.cmake b/scripts/cmake/common.cmake
index d4dc7d8..800b80a 100644
--- a/scripts/cmake/common.cmake
+++ b/scripts/cmake/common.cmake
@@ -39,6 +39,8 @@
set(the_command "${the_command} --dt-no-line-numbers=1")
# append the argument for ignoring the exit code of the test programs because some are intended to have failing tests
set(the_command "${the_command} --dt-no-exitcode=1")
+ # append the argument for using the same line format in the output - so gcc/non-gcc builds have the same output
+ set(the_command "${the_command} --dt-gnu-file-line=0")
string(STRIP ${the_command} the_command)