summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/expected_xunit.junitxml
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-13 11:21:01 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-01-15 18:05:40 +0100
commit539553a57216c4ece292ff54fb623807c334cdb6 (patch)
tree55c4c80b5fe764717dbe32169dd1906a5cf6bcb5 /tests/auto/testlib/selftests/expected_xunit.junitxml
parent7f5d41e286e043c5f3061e2eb5a0128102a38c80 (diff)
QTestlib/JUnit XML: Log most messages to standard output instead of error output
Add an enumeration for system-out and alog element for it. Redirect the messages types that are not warnings/errors to this element. For compatibility, write it out only if it is not empty. Rename enumerations and members accordingly. [ChangeLog][QtTestLib] In JUnit XML, output that is not a warning/error is now logged under <system-out> instead of <system-err>. Fixes: QTBUG-86540 Change-Id: I55598eafa7dafa486ac5a8221029c332ff47413b Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'tests/auto/testlib/selftests/expected_xunit.junitxml')
-rw-r--r--tests/auto/testlib/selftests/expected_xunit.junitxml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/testlib/selftests/expected_xunit.junitxml b/tests/auto/testlib/selftests/expected_xunit.junitxml
index 817f85e7f0..e1b21760f2 100644
--- a/tests/auto/testlib/selftests/expected_xunit.junitxml
+++ b/tests/auto/testlib/selftests/expected_xunit.junitxml
@@ -31,11 +31,13 @@
<failure result="xpass" message="&apos;true&apos; returned TRUE unexpectedly. ()"/>
</testcase>
<testcase name="cleanupTestCase" result="pass" time="@TEST_DURATION@"/>
- <system-err>
-<![CDATA[just a QWARN() !]]>
+ <system-out>
<![CDATA[a qDebug() call with comment-ending stuff -->]]>
<![CDATA[skipping this function!]]>
<![CDATA[this failure is expected]]>
<![CDATA[this failure is also expected]]>
+ </system-out>
+ <system-err>
+<![CDATA[just a QWARN() !]]>
</system-err>
</testsuite>