Remove SkipMode parameter from QSKIP.
The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: Ib6225572a46eac7881222fdce192750b8b13ee3b Reviewed-by: Steve Schilz <sschilz@pasco.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
committed by
Qt by Nokia
parent
23af917dc5
commit
34cdc41a93
@@ -166,7 +166,7 @@ void tst_QWaveDecoder::file()
|
||||
QSignalSpy parsingErrorSpy(&waveDecoder, SIGNAL(parsingError()));
|
||||
|
||||
if (corruption == NotAWav) {
|
||||
QSKIP("Not all failures detected correctly yet", SkipSingle);
|
||||
QSKIP("Not all failures detected correctly yet");
|
||||
QTRY_COMPARE(parsingErrorSpy.count(), 1);
|
||||
QCOMPARE(validFormatSpy.count(), 0);
|
||||
} else if (corruption == NoSampleData) {
|
||||
@@ -229,7 +229,7 @@ void tst_QWaveDecoder::http()
|
||||
QSignalSpy parsingErrorSpy(&waveDecoder, SIGNAL(parsingError()));
|
||||
|
||||
if (corruption == NotAWav) {
|
||||
QSKIP("Not all failures detected correctly yet", SkipSingle);
|
||||
QSKIP("Not all failures detected correctly yet");
|
||||
QTRY_COMPARE(parsingErrorSpy.count(), 1);
|
||||
QCOMPARE(validFormatSpy.count(), 0);
|
||||
} else if (corruption == NoSampleData) {
|
||||
|
||||
Reference in New Issue
Block a user