summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/selftests.pri
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2012-01-31 14:07:58 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-02 05:42:07 +0100
commit58c617c798c0d0db244735451acd316306068491 (patch)
tree6cc2ee72fc0f0802d3034bb6573a1d8fb841f6e1 /tests/auto/testlib/selftests/selftests.pri
parent835c53490b4fa9a248e6e4ca56965f9f7276da4d (diff)
Add testlib selftest for counting of test results.
The test simply generates each possible pair of Pass, Fail and Skip results. At present the test simply serves to demonstrate the current shortcomings of testlib's plain text logging, namely: * If a test function passes for all data rows, that is counted as one pass, but each skipped or failed row counts as one skip or fail. * Only skipped and failed rows are reported individually in the test output. Passed rows are not reported, so it is impossible to see how many rows were executed. * A skip followed by a pass will be reported as an overall pass for the test function, but the same rows in reverse order will not report any overall result for the test function. Future commits will attempt to correct these problems. Task-number: QTBUG-22124 Change-Id: If8c7ea15fc43ba9a1bccd0e881c1efc18e705b25 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/testlib/selftests/selftests.pri')
-rw-r--r--tests/auto/testlib/selftests/selftests.pri2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/testlib/selftests/selftests.pri b/tests/auto/testlib/selftests/selftests.pri
index f506c8c08c..95664c3793 100644
--- a/tests/auto/testlib/selftests/selftests.pri
+++ b/tests/auto/testlib/selftests/selftests.pri
@@ -4,4 +4,4 @@ SUBPROGRAMS = subtest warnings maxwarnings cmptest globaldata skip \
exceptionthrow qexecstringlist datatable commandlinedata\
benchlibwalltime benchlibcallgrind benchlibeventcounter benchlibtickcounter \
benchliboptions xunit badxml longstring float printdatatags \
- printdatatagswithglobaltags findtestdata
+ printdatatagswithglobaltags findtestdata counting