summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2014-10-20 19:12:23 +0200
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2014-10-20 19:12:25 +0200
commit3361fcbc28be96262d22fd2b024c85fbcbc61462 (patch)
tree48976f337b3885971dc1976b9a27cec5e7dfa2ec /tests/auto/corelib/global
parentdc612acdc6577594c8f61345cea2de549d7aae34 (diff)
parent5e342f6f041208d142d97202f61179d7163eb773 (diff)
Merge remote-tracking branch 'origin/5.4' into dev
Diffstat (limited to 'tests/auto/corelib/global')
-rw-r--r--tests/auto/corelib/global/qlogging/tst_qlogging.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/corelib/global/qlogging/tst_qlogging.cpp b/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
index f7d8bda190..35bd518b3a 100644
--- a/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
+++ b/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
@@ -670,6 +670,22 @@ void tst_qmessagehandler::cleanupFuncinfo_data()
QTest::newRow("gcc_39")
<< "int TestClass1::operator>(int)"
<< "TestClass1::operator>";
+
+ QTest::newRow("objc_1")
+ << "-[SomeClass someMethod:withArguments:]"
+ << "-[SomeClass someMethod:withArguments:]";
+
+ QTest::newRow("objc_2")
+ << "+[SomeClass withClassMethod:withArguments:]"
+ << "+[SomeClass withClassMethod:withArguments:]";
+
+ QTest::newRow("objc_3")
+ << "-[SomeClass someMethodWithoutArguments]"
+ << "-[SomeClass someMethodWithoutArguments]";
+
+ QTest::newRow("objc_4")
+ << "__31-[SomeClass someMethodSchedulingBlock]_block_invoke"
+ << "__31-[SomeClass someMethodSchedulingBlock]_block_invoke";
}
#endif