tst_qsoundeffect: Update to case testLooping

Be more permissive while checking loops remaining.
Remove file BLACKLIST

Task-number: QTBUG-46689
Change-Id: I15b5fb55ee770a190b2c21dd8cf1fad45665a73c
Reviewed-by: Milla Pohjanheimo <milla.pohjanheimo@qt.io>
Reviewed-by: Yoann Lopes <yoann.lopes@qt.io>
This commit is contained in:
Tuomas Heimonen
2016-06-29 08:52:29 +03:00
committed by Yoann Lopes
parent 59f20906d9
commit efccadf055
2 changed files with 3 additions and 10 deletions

View File

@@ -1,7 +0,0 @@
# QTBUG-46689
[testLooping]
ubuntu-14.04 64bit
redhatenterpriselinuxworkstation-6.6
rhel-7.1
opensuse-13.1

View File

@@ -188,7 +188,7 @@ void tst_QSoundEffect::testLooping()
// wait for all the loops to be completed
QTRY_COMPARE(sound->loopsRemaining(), 0);
QVERIFY(readSignal_Remaining.count() >= 6);
QTRY_VERIFY(readSignal_Remaining.count() >= 6);
QTRY_VERIFY(!sound->isPlaying());
}
@@ -203,7 +203,7 @@ void tst_QSoundEffect::testLooping()
QCOMPARE(readSignal_Remaining.count(), 0);
sound->play();
QCOMPARE(sound->loopsRemaining(), int(QSoundEffect::Infinite));
QTRY_COMPARE(sound->loopsRemaining(), int(QSoundEffect::Infinite));
QCOMPARE(readSignal_Remaining.count(), 1);
QTest::qWait(1500);
@@ -219,7 +219,7 @@ void tst_QSoundEffect::testLooping()
QCOMPARE(readSignal_Remaining.count(), 1);
QTRY_COMPARE(sound->loopsRemaining(), 0);
QVERIFY(readSignal_Remaining.count() >= 2);
QTRY_VERIFY(readSignal_Remaining.count() >= 2);
QTRY_VERIFY(!sound->isPlaying());
}
}