summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/expected_silent.junitxml
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2021-08-02 16:05:07 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2021-08-10 18:06:36 +0200
commitf6c7eb5f0f59f183d327b732a088646f972805d7 (patch)
tree6e349078a7c920e2a2f98a8bd85e70bfc6f10de3 /tests/auto/testlib/selftests/expected_silent.junitxml
parent825e4291cd44b82c0566e86e60bb77f434196a44 (diff)
testlib: Only generate expecations for silent test with plain logger
The -silent option to tests is only supported with the plain text logger, so we don't need to maintain expectation files for the others. Pick-to: 6.2 Change-Id: I0f42bfe90d82b7ce04f550c747d4a80e99621e74 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'tests/auto/testlib/selftests/expected_silent.junitxml')
-rw-r--r--tests/auto/testlib/selftests/expected_silent.junitxml42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/auto/testlib/selftests/expected_silent.junitxml b/tests/auto/testlib/selftests/expected_silent.junitxml
deleted file mode 100644
index 7293e30170..0000000000
--- a/tests/auto/testlib/selftests/expected_silent.junitxml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<testsuite name="tst_Silent" timestamp="@TEST_START_TIME@" hostname="@HOSTNAME@" tests="7" failures="2" errors="1" skipped="1" time="@TEST_DURATION@">
- <properties>
- <property name="QTestVersion" value="@INSERT_QT_VERSION_HERE@"/>
- <property name="QtVersion" value="@INSERT_QT_VERSION_HERE@"/>
- <property name="QtBuild" value=""/>
- </properties>
- <testcase name="initTestCase" classname="tst_Silent" time="@TEST_DURATION@"/>
- <testcase name="pass" classname="tst_Silent" time="@TEST_DURATION@"/>
- <testcase name="skip" classname="tst_Silent" time="@TEST_DURATION@">
- <skipped message="This test should skip"/>
- </testcase>
- <testcase name="fail" classname="tst_Silent" time="@TEST_DURATION@">
- <failure type="fail" message="&apos;false&apos; returned FALSE. (This test should fail)"/>
- </testcase>
- <testcase name="xfail" classname="tst_Silent" time="@TEST_DURATION@">
- <!-- type="info" message="This test should XFAIL" -->
- </testcase>
- <testcase name="xpass" classname="tst_Silent" time="@TEST_DURATION@">
- <failure type="xpass" message="&apos;true&apos; returned TRUE unexpectedly. (This test should XPASS)"/>
- </testcase>
- <testcase name="messages" classname="tst_Silent" time="@TEST_DURATION@">
- <!-- type="qwarn" message="This is a warning that should not appear in silent test output" -->
- <!-- type="warn" message="This is an internal testlib warning that should not appear in silent test output" -->
- <!-- type="qdebug" message="This is a debug message that should not appear in silent test output" -->
- <!-- type="system" message="This is a critical message that should not appear in silent test output" -->
- <!-- type="qinfo" message="This is an info message that should not appear in silent test output" -->
- <!-- type="info" message="This is an internal testlib info message that should not appear in silent test output" -->
- <error type="qfatal" message="This is a fatal error message that should still appear in silent test output"/>
- </testcase>
- <system-out>
- <![CDATA[This test should XFAIL]]>
- <![CDATA[This is a debug message that should not appear in silent test output]]>
- <![CDATA[This is a critical message that should not appear in silent test output]]>
- <![CDATA[This is an info message that should not appear in silent test output]]>
- <![CDATA[This is an internal testlib info message that should not appear in silent test output]]>
- </system-out>
- <system-err>
- <![CDATA[This is a warning that should not appear in silent test output]]>
- <![CDATA[This is an internal testlib warning that should not appear in silent test output]]>
- </system-err>
-</testsuite>