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:
Jason McDonald
2011-11-09 14:14:08 +10:00
committed by Qt by Nokia
parent 23af917dc5
commit 34cdc41a93
10 changed files with 30 additions and 30 deletions

View File

@@ -899,7 +899,7 @@ void tst_QMediaImageViewer::rendererControl()
QMediaService *service = viewer.service();
if (service == 0)
QSKIP("Image viewer object has no service.", SkipSingle);
QSKIP("Image viewer object has no service.");
QMediaControl *mediaControl = service->requestControl(QVideoRendererControl_iid);
QVERIFY(mediaControl != 0);
@@ -918,7 +918,7 @@ void tst_QMediaImageViewer::rendererControl()
QTestEventLoop::instance().enterLoop(2);
if (viewer.mediaStatus() != QMediaImageViewer::LoadedMedia)
QSKIP("failed to load test image", SkipSingle);
QSKIP("failed to load test image");
QCOMPARE(surfaceA.isActive(), true);
@@ -993,7 +993,7 @@ void tst_QMediaImageViewer::setVideoOutput()
QTestEventLoop::instance().enterLoop(2);
if (imageViewer.mediaStatus() != QMediaImageViewer::LoadedMedia)
QSKIP("failed to load test image", SkipSingle);
QSKIP("failed to load test image");
QtTestVideoSurface surface;