Fix the skip-check in TestMethods::invokeTest()
TestMethods::invokeTest() has an outer loop on global data (albeit with a comment that said otherwise). On its first cycle, we run the test function's *_data() method, if it has one; there is an inner loop on the rows this created. If the *_data() QSKIP()s, we need to skip the whole test; otherwise, a QSKIP() in one sub-test should not lead to skipping the remaining sub-tests. Moved the check for *_data() QSKIP()ping to right after *_data() returns, inside the "first global cycle" block that runs it. Previously, this check was done before entering the loop on local data rows, but outside that "first global cycle" block: consequently, later global cycles would fall foul of this check (even though the *_data() hasn't been run in this cycle, much less QSKIP()ped in it) if the last sub-test of the previous global cycle had QSKIP()ped. When running a single test for one specific data row, if the test's *_data() QSKIP()ped, this misplaced check would also have lead to a misleading "Unknown testdata" warning. Changed testlib/selftests' tst_globaldata::skipSingle() to trigger the bug (by having its last local row of first global row skip, which caused the second global row to be omitted) to verify this is also fixed; and amended one of its comments to reflect what's now to be expected. Updated the test's expected output files. Task-number: QTBUG-61774 Change-Id: I99596b595c6d1184038f23383844c6ff51a0cd91 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
This commit is contained in:
parent
bab398aba3
commit
b82b3f4067
@ -1095,7 +1095,7 @@ bool TestMethods::invokeTest(int index, const char *data, WatchDog *watchDog) co
|
|||||||
const int globalDataCount = gTable->dataCount();
|
const int globalDataCount = gTable->dataCount();
|
||||||
int curGlobalDataIndex = 0;
|
int curGlobalDataIndex = 0;
|
||||||
|
|
||||||
/* For each test function that has a *_data() table/function, do: */
|
/* For each entry in the global data table, do: */
|
||||||
do {
|
do {
|
||||||
if (!gTable->isEmpty())
|
if (!gTable->isEmpty())
|
||||||
QTestResult::setCurrentGlobalTestData(gTable->testData(curGlobalDataIndex));
|
QTestResult::setCurrentGlobalTestData(gTable->testData(curGlobalDataIndex));
|
||||||
@ -1103,51 +1103,51 @@ bool TestMethods::invokeTest(int index, const char *data, WatchDog *watchDog) co
|
|||||||
if (curGlobalDataIndex == 0) {
|
if (curGlobalDataIndex == 0) {
|
||||||
qsnprintf(member, 512, "%s_data()", name.constData());
|
qsnprintf(member, 512, "%s_data()", name.constData());
|
||||||
invokeMethod(QTest::currentTestObject, member);
|
invokeMethod(QTest::currentTestObject, member);
|
||||||
|
if (QTestResult::skipCurrentTest())
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool foundFunction = false;
|
bool foundFunction = false;
|
||||||
if (!QTestResult::skipCurrentTest()) {
|
int curDataIndex = 0;
|
||||||
int curDataIndex = 0;
|
const int dataCount = table.dataCount();
|
||||||
const int dataCount = table.dataCount();
|
|
||||||
|
|
||||||
// Data tag requested but none available?
|
// Data tag requested but none available?
|
||||||
if (data && !dataCount) {
|
if (data && !dataCount) {
|
||||||
// Let empty data tag through.
|
// Let empty data tag through.
|
||||||
if (!*data)
|
if (!*data)
|
||||||
data = 0;
|
data = 0;
|
||||||
else {
|
else {
|
||||||
fprintf(stderr, "Unknown testdata for function %s(): '%s'\n", name.constData(), data);
|
fprintf(stderr, "Unknown testdata for function %s(): '%s'\n", name.constData(), data);
|
||||||
fprintf(stderr, "Function has no testdata.\n");
|
fprintf(stderr, "Function has no testdata.\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For each entry in the data table, do: */
|
|
||||||
do {
|
|
||||||
QTestResult::setSkipCurrentTest(false);
|
|
||||||
QTestResult::setBlacklistCurrentTest(false);
|
|
||||||
if (!data || !qstrcmp(data, table.testData(curDataIndex)->dataTag())) {
|
|
||||||
foundFunction = true;
|
|
||||||
|
|
||||||
QTestPrivate::checkBlackLists(name.constData(), dataCount ? table.testData(curDataIndex)->dataTag() : 0);
|
|
||||||
|
|
||||||
QTestDataSetter s(curDataIndex >= dataCount ? static_cast<QTestData *>(0)
|
|
||||||
: table.testData(curDataIndex));
|
|
||||||
|
|
||||||
QTestPrivate::qtestMouseButtons = Qt::NoButton;
|
|
||||||
if (watchDog)
|
|
||||||
watchDog->beginTest();
|
|
||||||
invokeTestOnData(index);
|
|
||||||
if (watchDog)
|
|
||||||
watchDog->testFinished();
|
|
||||||
|
|
||||||
if (data)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
++curDataIndex;
|
|
||||||
} while (curDataIndex < dataCount);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For each entry in this test's data table, do: */
|
||||||
|
do {
|
||||||
|
QTestResult::setSkipCurrentTest(false);
|
||||||
|
QTestResult::setBlacklistCurrentTest(false);
|
||||||
|
if (!data || !qstrcmp(data, table.testData(curDataIndex)->dataTag())) {
|
||||||
|
foundFunction = true;
|
||||||
|
|
||||||
|
QTestPrivate::checkBlackLists(name.constData(), dataCount ? table.testData(curDataIndex)->dataTag() : 0);
|
||||||
|
|
||||||
|
QTestDataSetter s(curDataIndex >= dataCount ? static_cast<QTestData *>(0)
|
||||||
|
: table.testData(curDataIndex));
|
||||||
|
|
||||||
|
QTestPrivate::qtestMouseButtons = Qt::NoButton;
|
||||||
|
if (watchDog)
|
||||||
|
watchDog->beginTest();
|
||||||
|
invokeTestOnData(index);
|
||||||
|
if (watchDog)
|
||||||
|
watchDog->testFinished();
|
||||||
|
|
||||||
|
if (data)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
++curDataIndex;
|
||||||
|
} while (curDataIndex < dataCount);
|
||||||
|
|
||||||
if (data && !foundFunction) {
|
if (data && !foundFunction) {
|
||||||
fprintf(stderr, "Unknown testdata for function %s: '%s()'\n", name.constData(), data);
|
fprintf(stderr, "Unknown testdata for function %s: '%s()'\n", name.constData(), data);
|
||||||
fprintf(stderr, "Available testdata:\n");
|
fprintf(stderr, "Available testdata:\n");
|
||||||
|
@ -120,6 +120,30 @@
|
|||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[init skipLocal local=false]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[skipping]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[cleanup skipLocal local=false]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[init skipLocal local=true]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[skipping]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Duration msecs="0"/>
|
<Duration msecs="0"/>
|
||||||
</TestFunction>
|
</TestFunction>
|
||||||
@ -143,17 +167,14 @@
|
|||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[init skipSingle local=true]]></Description>
|
<Description><![CDATA[init skipSingle local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[global: false local: true]]></Description>
|
<Description><![CDATA[Skipping]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[cleanup skipSingle local=true]]></Description>
|
<Description><![CDATA[cleanup skipSingle local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Incident type="pass" file="" line="0">
|
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
|
||||||
</Incident>
|
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
<Description><![CDATA[init skipSingle local=false]]></Description>
|
<Description><![CDATA[init skipSingle local=false]]></Description>
|
||||||
|
@ -29,24 +29,29 @@ ok 7 - skipLocal(global=false:local=false) # SKIP skipping
|
|||||||
# init skipLocal local=true
|
# init skipLocal local=true
|
||||||
ok 8 - skipLocal(global=false:local=true) # SKIP skipping
|
ok 8 - skipLocal(global=false:local=true) # SKIP skipping
|
||||||
# cleanup skipLocal local=true
|
# cleanup skipLocal local=true
|
||||||
|
# init skipLocal local=false
|
||||||
|
ok 9 - skipLocal(global=true:local=false) # SKIP skipping
|
||||||
|
# cleanup skipLocal local=false
|
||||||
|
# init skipLocal local=true
|
||||||
|
ok 10 - skipLocal(global=true:local=true) # SKIP skipping
|
||||||
|
# cleanup skipLocal local=true
|
||||||
# init skipSingle local=false
|
# init skipSingle local=false
|
||||||
# global: false local: false
|
# global: false local: false
|
||||||
# cleanup skipSingle local=false
|
# cleanup skipSingle local=false
|
||||||
ok 9 - skipSingle(global=false:local=false)
|
ok 11 - skipSingle(global=false:local=false)
|
||||||
# init skipSingle local=true
|
# init skipSingle local=true
|
||||||
# global: false local: true
|
ok 12 - skipSingle(global=false:local=true) # SKIP Skipping
|
||||||
# cleanup skipSingle local=true
|
# cleanup skipSingle local=true
|
||||||
ok 10 - skipSingle(global=false:local=true)
|
|
||||||
# init skipSingle local=false
|
# init skipSingle local=false
|
||||||
ok 11 - skipSingle(global=true:local=false) # SKIP Skipping
|
ok 13 - skipSingle(global=true:local=false) # SKIP Skipping
|
||||||
# cleanup skipSingle local=false
|
# cleanup skipSingle local=false
|
||||||
# init skipSingle local=true
|
# init skipSingle local=true
|
||||||
# global: true local: true
|
# global: true local: true
|
||||||
# cleanup skipSingle local=true
|
# cleanup skipSingle local=true
|
||||||
ok 12 - skipSingle(global=true:local=true)
|
ok 14 - skipSingle(global=true:local=true)
|
||||||
# cleanupTestCase cleanupTestCase (null)
|
# cleanupTestCase cleanupTestCase (null)
|
||||||
ok 13 - cleanupTestCase()
|
ok 15 - cleanupTestCase()
|
||||||
1..13
|
1..15
|
||||||
# tests 13
|
# tests 15
|
||||||
# pass 9
|
# pass 8
|
||||||
# fail 0
|
# fail 0
|
||||||
|
@ -17,14 +17,15 @@
|
|||||||
##teamcity[testIgnored name='skip()' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
##teamcity[testIgnored name='skip()' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skipLocal(local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
##teamcity[testIgnored name='skipLocal(local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testIgnored name='skipLocal(local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
##teamcity[testIgnored name='skipLocal(local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
|
##teamcity[testIgnored name='skipLocal(local=false)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
|
##teamcity[testIgnored name='skipLocal(local=true)' message='skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='skipSingle(local=false)' flowId='tst_globaldata']
|
##teamcity[testStarted name='skipSingle(local=false)' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local=false)' out='QDEBUG: init skipLocal local=false|nQDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true|nQDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipSingle local=false|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local=false' flowId='tst_globaldata']
|
##teamcity[testStdOut name='skipSingle(local=false)' out='QDEBUG: init skipLocal local=false|nQDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true|nQDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipLocal local=false|nQDEBUG: cleanup skipLocal local=false|nQDEBUG: init skipLocal local=true|nQDEBUG: cleanup skipLocal local=true|nQDEBUG: init skipSingle local=false|nQDEBUG: global: false local: false|nQDEBUG: cleanup skipSingle local=false' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='skipSingle(local=false)' flowId='tst_globaldata']
|
##teamcity[testFinished name='skipSingle(local=false)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='skipSingle(local=true)' flowId='tst_globaldata']
|
##teamcity[testIgnored name='skipSingle(local=true)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local=true)' out='QDEBUG: init skipSingle local=true|nQDEBUG: global: false local: true|nQDEBUG: cleanup skipSingle local=true' flowId='tst_globaldata']
|
|
||||||
##teamcity[testFinished name='skipSingle(local=true)' flowId='tst_globaldata']
|
|
||||||
##teamcity[testIgnored name='skipSingle(local=false)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
##teamcity[testIgnored name='skipSingle(local=false)' message='Skipping |[Loc: qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)|]' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='skipSingle(local=true)' out='QDEBUG: init skipSingle local=false|nQDEBUG: cleanup skipSingle local=false|nQDEBUG: init skipSingle local=true|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local=true' flowId='tst_globaldata']
|
##teamcity[testStarted name='skipSingle(local=true)' flowId='tst_globaldata']
|
||||||
|
##teamcity[testStdOut name='skipSingle(local=true)' out='QDEBUG: init skipSingle local=true|nQDEBUG: cleanup skipSingle local=true|nQDEBUG: init skipSingle local=false|nQDEBUG: cleanup skipSingle local=false|nQDEBUG: init skipSingle local=true|nQDEBUG: global: true local: true|nQDEBUG: cleanup skipSingle local=true' flowId='tst_globaldata']
|
||||||
##teamcity[testFinished name='skipSingle(local=true)' flowId='tst_globaldata']
|
##teamcity[testFinished name='skipSingle(local=true)' flowId='tst_globaldata']
|
||||||
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_globaldata']
|
##teamcity[testStarted name='cleanupTestCase()' flowId='tst_globaldata']
|
||||||
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanupTestCase cleanupTestCase (null)' flowId='tst_globaldata']
|
##teamcity[testStdOut name='cleanupTestCase()' out='QDEBUG: cleanupTestCase cleanupTestCase (null)' flowId='tst_globaldata']
|
||||||
|
@ -32,14 +32,22 @@ QDEBUG : tst_globaldata::skipLocal(global=false:local=true) init skipLocal local
|
|||||||
SKIP : tst_globaldata::skipLocal(global=false:local=true) skipping
|
SKIP : tst_globaldata::skipLocal(global=false:local=true) skipping
|
||||||
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
||||||
QDEBUG : tst_globaldata::skipLocal(global=false:local=true) cleanup skipLocal local=true
|
QDEBUG : tst_globaldata::skipLocal(global=false:local=true) cleanup skipLocal local=true
|
||||||
|
QDEBUG : tst_globaldata::skipLocal(global=true:local=false) init skipLocal local=false
|
||||||
|
SKIP : tst_globaldata::skipLocal(global=true:local=false) skipping
|
||||||
|
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
||||||
|
QDEBUG : tst_globaldata::skipLocal(global=true:local=false) cleanup skipLocal local=false
|
||||||
|
QDEBUG : tst_globaldata::skipLocal(global=true:local=true) init skipLocal local=true
|
||||||
|
SKIP : tst_globaldata::skipLocal(global=true:local=true) skipping
|
||||||
|
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
||||||
|
QDEBUG : tst_globaldata::skipLocal(global=true:local=true) cleanup skipLocal local=true
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) init skipSingle local=false
|
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) init skipSingle local=false
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) global: false local: false
|
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) global: false local: false
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) cleanup skipSingle local=false
|
QDEBUG : tst_globaldata::skipSingle(global=false:local=false) cleanup skipSingle local=false
|
||||||
PASS : tst_globaldata::skipSingle(global=false:local=false)
|
PASS : tst_globaldata::skipSingle(global=false:local=false)
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=true) init skipSingle local=true
|
QDEBUG : tst_globaldata::skipSingle(global=false:local=true) init skipSingle local=true
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=true) global: false local: true
|
SKIP : tst_globaldata::skipSingle(global=false:local=true) Skipping
|
||||||
|
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=false:local=true) cleanup skipSingle local=true
|
QDEBUG : tst_globaldata::skipSingle(global=false:local=true) cleanup skipSingle local=true
|
||||||
PASS : tst_globaldata::skipSingle(global=false:local=true)
|
|
||||||
QDEBUG : tst_globaldata::skipSingle(global=true:local=false) init skipSingle local=false
|
QDEBUG : tst_globaldata::skipSingle(global=true:local=false) init skipSingle local=false
|
||||||
SKIP : tst_globaldata::skipSingle(global=true:local=false) Skipping
|
SKIP : tst_globaldata::skipSingle(global=true:local=false) Skipping
|
||||||
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
Loc: [qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp(0)]
|
||||||
@ -50,5 +58,5 @@ QDEBUG : tst_globaldata::skipSingle(global=true:local=true) cleanup skipSingle l
|
|||||||
PASS : tst_globaldata::skipSingle(global=true:local=true)
|
PASS : tst_globaldata::skipSingle(global=true:local=true)
|
||||||
QDEBUG : tst_globaldata::cleanupTestCase() cleanupTestCase cleanupTestCase (null)
|
QDEBUG : tst_globaldata::cleanupTestCase() cleanupTestCase cleanupTestCase (null)
|
||||||
PASS : tst_globaldata::cleanupTestCase()
|
PASS : tst_globaldata::cleanupTestCase()
|
||||||
Totals: 9 passed, 0 failed, 4 skipped, 0 blacklisted, 0ms
|
Totals: 8 passed, 0 failed, 7 skipped, 0 blacklisted, 0ms
|
||||||
********* Finished testing of tst_globaldata *********
|
********* Finished testing of tst_globaldata *********
|
||||||
|
@ -122,6 +122,30 @@
|
|||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[init skipLocal local=false]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[skipping]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
|
<Description><![CDATA[cleanup skipLocal local=false]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[init skipLocal local=true]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[skipping]]></Description>
|
||||||
|
</Message>
|
||||||
|
<Message type="qdebug" file="" line="0">
|
||||||
|
<DataTag><![CDATA[global=true:local=true]]></DataTag>
|
||||||
|
<Description><![CDATA[cleanup skipLocal local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Duration msecs="0"/>
|
<Duration msecs="0"/>
|
||||||
</TestFunction>
|
</TestFunction>
|
||||||
@ -145,17 +169,14 @@
|
|||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[init skipSingle local=true]]></Description>
|
<Description><![CDATA[init skipSingle local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="skip" file="qtbase/tests/auto/testlib/selftests/globaldata/tst_globaldata.cpp" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[global: false local: true]]></Description>
|
<Description><![CDATA[Skipping]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
||||||
<Description><![CDATA[cleanup skipSingle local=true]]></Description>
|
<Description><![CDATA[cleanup skipSingle local=true]]></Description>
|
||||||
</Message>
|
</Message>
|
||||||
<Incident type="pass" file="" line="0">
|
|
||||||
<DataTag><![CDATA[global=false:local=true]]></DataTag>
|
|
||||||
</Incident>
|
|
||||||
<Message type="qdebug" file="" line="0">
|
<Message type="qdebug" file="" line="0">
|
||||||
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
<DataTag><![CDATA[global=true:local=false]]></DataTag>
|
||||||
<Description><![CDATA[init skipSingle local=false]]></Description>
|
<Description><![CDATA[init skipSingle local=false]]></Description>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<testsuite errors="37" failures="0" tests="6" name="tst_globaldata">
|
<testsuite errors="43" failures="0" tests="6" name="tst_globaldata">
|
||||||
<properties>
|
<properties>
|
||||||
<property value="@INSERT_QT_VERSION_HERE@" name="QTestVersion"/>
|
<property value="@INSERT_QT_VERSION_HERE@" name="QTestVersion"/>
|
||||||
<property value="@INSERT_QT_VERSION_HERE@" name="QtVersion"/>
|
<property value="@INSERT_QT_VERSION_HERE@" name="QtVersion"/>
|
||||||
@ -36,13 +36,19 @@
|
|||||||
<!-- tag="global=false:local=true" message="init skipLocal local=true" type="qdebug" -->
|
<!-- tag="global=false:local=true" message="init skipLocal local=true" type="qdebug" -->
|
||||||
<!-- tag="global=false:local=true" message="skipping" type="skip" -->
|
<!-- tag="global=false:local=true" message="skipping" type="skip" -->
|
||||||
<!-- tag="global=false:local=true" message="cleanup skipLocal local=true" type="qdebug" -->
|
<!-- tag="global=false:local=true" message="cleanup skipLocal local=true" type="qdebug" -->
|
||||||
|
<!-- tag="global=true:local=false" message="init skipLocal local=false" type="qdebug" -->
|
||||||
|
<!-- tag="global=true:local=false" message="skipping" type="skip" -->
|
||||||
|
<!-- tag="global=true:local=false" message="cleanup skipLocal local=false" type="qdebug" -->
|
||||||
|
<!-- tag="global=true:local=true" message="init skipLocal local=true" type="qdebug" -->
|
||||||
|
<!-- tag="global=true:local=true" message="skipping" type="skip" -->
|
||||||
|
<!-- tag="global=true:local=true" message="cleanup skipLocal local=true" type="qdebug" -->
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase result="pass" name="skipSingle">
|
<testcase result="pass" name="skipSingle">
|
||||||
<!-- tag="global=false:local=false" message="init skipSingle local=false" type="qdebug" -->
|
<!-- tag="global=false:local=false" message="init skipSingle local=false" type="qdebug" -->
|
||||||
<!-- tag="global=false:local=false" message="global: false local: false" type="qdebug" -->
|
<!-- tag="global=false:local=false" message="global: false local: false" type="qdebug" -->
|
||||||
<!-- tag="global=false:local=false" message="cleanup skipSingle local=false" type="qdebug" -->
|
<!-- tag="global=false:local=false" message="cleanup skipSingle local=false" type="qdebug" -->
|
||||||
<!-- tag="global=false:local=true" message="init skipSingle local=true" type="qdebug" -->
|
<!-- tag="global=false:local=true" message="init skipSingle local=true" type="qdebug" -->
|
||||||
<!-- tag="global=false:local=true" message="global: false local: true" type="qdebug" -->
|
<!-- tag="global=false:local=true" message="Skipping" type="skip" -->
|
||||||
<!-- tag="global=false:local=true" message="cleanup skipSingle local=true" type="qdebug" -->
|
<!-- tag="global=false:local=true" message="cleanup skipSingle local=true" type="qdebug" -->
|
||||||
<!-- tag="global=true:local=false" message="init skipSingle local=false" type="qdebug" -->
|
<!-- tag="global=true:local=false" message="init skipSingle local=false" type="qdebug" -->
|
||||||
<!-- tag="global=true:local=false" message="Skipping" type="skip" -->
|
<!-- tag="global=true:local=false" message="Skipping" type="skip" -->
|
||||||
@ -79,11 +85,17 @@
|
|||||||
<![CDATA[init skipLocal local=true]]>
|
<![CDATA[init skipLocal local=true]]>
|
||||||
<![CDATA[skipping]]>
|
<![CDATA[skipping]]>
|
||||||
<![CDATA[cleanup skipLocal local=true]]>
|
<![CDATA[cleanup skipLocal local=true]]>
|
||||||
|
<![CDATA[init skipLocal local=false]]>
|
||||||
|
<![CDATA[skipping]]>
|
||||||
|
<![CDATA[cleanup skipLocal local=false]]>
|
||||||
|
<![CDATA[init skipLocal local=true]]>
|
||||||
|
<![CDATA[skipping]]>
|
||||||
|
<![CDATA[cleanup skipLocal local=true]]>
|
||||||
<![CDATA[init skipSingle local=false]]>
|
<![CDATA[init skipSingle local=false]]>
|
||||||
<![CDATA[global: false local: false]]>
|
<![CDATA[global: false local: false]]>
|
||||||
<![CDATA[cleanup skipSingle local=false]]>
|
<![CDATA[cleanup skipSingle local=false]]>
|
||||||
<![CDATA[init skipSingle local=true]]>
|
<![CDATA[init skipSingle local=true]]>
|
||||||
<![CDATA[global: false local: true]]>
|
<![CDATA[Skipping]]>
|
||||||
<![CDATA[cleanup skipSingle local=true]]>
|
<![CDATA[cleanup skipSingle local=true]]>
|
||||||
<![CDATA[init skipSingle local=false]]>
|
<![CDATA[init skipSingle local=false]]>
|
||||||
<![CDATA[Skipping]]>
|
<![CDATA[Skipping]]>
|
||||||
|
@ -125,11 +125,12 @@ void tst_globaldata::skipSingle()
|
|||||||
QFETCH_GLOBAL(bool, global);
|
QFETCH_GLOBAL(bool, global);
|
||||||
QFETCH(bool, local);
|
QFETCH(bool, local);
|
||||||
|
|
||||||
// A skip in the last run of one global row suppresses the test in the next
|
// A skip in the last run of one global row used to suppress the test in the
|
||||||
// global row (where a skip in an earlier run of the first row does not).
|
// next global row (where a skip in an earlier run of the first row did not).
|
||||||
if (global && !local)
|
if (global ^ local)
|
||||||
QSKIP("Skipping");
|
QSKIP("Skipping");
|
||||||
qDebug() << "global:" << global << "local:" << local;
|
qDebug() << "global:" << global << "local:" << local;
|
||||||
|
QCOMPARE(global, local);
|
||||||
}
|
}
|
||||||
|
|
||||||
void tst_globaldata::skipLocal()
|
void tst_globaldata::skipLocal()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user