eb52d78e90
Prior to this commit, a benchmark test could report 0..n passes and 0..m fails or skips, where n is the number of accumulation iterations used to collect benchmark data and m is the number of times the test function was invoked. Depending on the type of benchmark measurer being used, this could result in a very large volume of test output and inconsistent pass, fail and skip counts between test runs. This commit changes the behaviour so that each benchmark test reports one pass, fail or skip, regardless of the number of iterations used to collect benchmark data. This commit also prevents benchmark data being reported in the test output if the benchmark test failed or skipped, as any benchmark data is of dubious value in such cases. The latter change in behaviour requires a minor modification to the badxml selftest, which now tests quoting of literal strings in xml test output for both passing and failing benchmarks. Finally, this commit also adds a new selftest specifically for verifying correct behaviour for benchmarks that fail or skip. Task-number: QTBUG-24313 Change-Id: I3426dc659a7511b62fd183a031c7235bc753f497 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
47 lines
2.8 KiB
XML
47 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<testsuite errors="12" failures="5" tests="5" name="tst_BadXml">
|
|
<properties>
|
|
<property value="@INSERT_QT_VERSION_HERE@" name="QTestVersion"/>
|
|
<property value="@INSERT_QT_VERSION_HERE@" name="QtVersion"/>
|
|
</properties>
|
|
<testcase result="pass" name="initTestCase"/>
|
|
<testcase result="fail" name="badDataTag">
|
|
<!-- tag="fail end cdata ]]> text ]]> more text" message="a message" type="qdebug" -->
|
|
<failure tag="fail end cdata ]]> text ]]> more text" message="a failure" result="fail"/>
|
|
<!-- tag="pass end cdata ]]> text ]]> more text" message="a message" type="qdebug" -->
|
|
<!-- tag="fail quotes " text" more text" message="a message" type="qdebug" -->
|
|
<failure tag="fail quotes " text" more text" message="a failure" result="fail"/>
|
|
<!-- tag="pass quotes " text" more text" message="a message" type="qdebug" -->
|
|
<!-- tag="fail xml close > open < tags < text" message="a message" type="qdebug" -->
|
|
<failure tag="fail xml close > open < tags < text" message="a failure" result="fail"/>
|
|
<!-- tag="pass xml close > open < tags < text" message="a message" type="qdebug" -->
|
|
<!-- tag="fail all > " mixed ]]> up > " in < the ]]> hopes < of triggering "< ]]> bugs" message="a message" type="qdebug" -->
|
|
<failure tag="fail all > " mixed ]]> up > " in < the ]]> hopes < of triggering "< ]]> bugs" message="a failure" result="fail"/>
|
|
<!-- tag="pass all > " mixed ]]> up > " in < the ]]> hopes < of triggering "< ]]> bugs" message="a message" type="qdebug" -->
|
|
</testcase>
|
|
<testcase result="pass" name="badMessage">
|
|
<!-- tag="string 0" message="end cdata ]]> text ]]> more text" type="qdebug" -->
|
|
<!-- tag="string 1" message="quotes " text" more text" type="qdebug" -->
|
|
<!-- tag="string 2" message="xml close > open < tags < text" type="qdebug" -->
|
|
<!-- tag="string 3" message="all > " mixed ]]> up > " in < the ]]> hopes < of triggering "< ]]> bugs" type="qdebug" -->
|
|
</testcase>
|
|
<testcase result="fail" name="failWithNoFile">
|
|
<failure message="failure message" result="fail"/>
|
|
</testcase>
|
|
<testcase result="pass" name="cleanupTestCase"/>
|
|
<system-err>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[a message]]>
|
|
<![CDATA[end cdata ]]]><![CDATA[]> text ]]]><![CDATA[]> more text]]>
|
|
<![CDATA[quotes " text" more text]]>
|
|
<![CDATA[xml close > open < tags < text]]>
|
|
<![CDATA[all > " mixed ]]]><![CDATA[]> up > " in < the ]]]><![CDATA[]> hopes < of triggering "< ]]]><![CDATA[]> bugs]]>
|
|
</system-err>
|
|
</testsuite>
|