On my Jenkins kernel, I run unit tests for both configurations: debug and release. Each test configuration generates a separate JUnit XML result file. Test names for both versions: debugging and release are the same. I am currently using the following junit
command to show test results:
junit allowEmptyResults: true, healthScaleFactor: 0.0, keepLongStdio: true, testResults: 'Test-Dir/Artifacts/test_xml_reports_*/*.xml'
The problem is that both are on Jenkins UI: the debug and release test results are displayed together, and it is impossible to find out which test (from the debug or release configuration) failed. Is it possible to show the results of debugging and release of tests separately? If so, how can I do this?
source share