Flag two tests (Win+A, Simon+G) in parseString as expect fail on OSX.
Remove previously defined insignificant test flag as the number of tests failing has been reduced. Task-number: QTBUG-24406 Task-number: QTBUG-23058 Change-Id: I01b41f30469cf7a440e21195e105cb30a8db76e2 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>bb10
parent
ca1aa0da03
commit
a30f42ddb3
|
|
@ -7,5 +7,3 @@ QT += core-private gui-private
|
|||
SOURCES += tst_qkeysequence.cpp
|
||||
|
||||
RESOURCES += qkeysequence.qrc
|
||||
|
||||
mac: CONFIG += insignificant_test # QTBUG-23058
|
||||
|
|
|
|||
|
|
@ -576,6 +576,11 @@ void tst_QKeySequence::parseString()
|
|||
QFETCH( QString, strSequence );
|
||||
QFETCH( QKeySequence, keycode );
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
QEXPECT_FAIL("Win+A", "QTBUG-24406 - This test fails on OSX", Abort);
|
||||
QEXPECT_FAIL("Simon+G", "QTBUG-24406 - This test fails on OSX", Abort);
|
||||
#endif
|
||||
|
||||
QCOMPARE( QKeySequence(strSequence).toString(), keycode.toString() );
|
||||
QVERIFY( QKeySequence(strSequence) == keycode );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue