From e08410ab8db3d7cabf4ef2fc4de40bb6da6d6fef Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Thu, 24 Nov 2011 17:34:51 +1000 Subject: Cleanup corelib autotests Bug trackers come and go, so using bug identifiers in function and test case names will ensure that those names eventually become meaningless. It is better to choose a meaningful name and provide explanatory comments where appropriate. Change-Id: I67c27782ef21b5d4eaab4854079a043c8ef6957b Reviewed-by: Rohan McGovern --- tests/auto/corelib/thread/qthread/tst_qthread.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/auto/corelib/thread/qthread') diff --git a/tests/auto/corelib/thread/qthread/tst_qthread.cpp b/tests/auto/corelib/thread/qthread/tst_qthread.cpp index 540f4b3d1e..42a64ef427 100644 --- a/tests/auto/corelib/thread/qthread/tst_qthread.cpp +++ b/tests/auto/corelib/thread/qthread/tst_qthread.cpp @@ -96,8 +96,8 @@ private slots: void adoptMultipleThreads(); void adoptMultipleThreadsOverlap(); - void QTBUG13810_exitAndStart(); - void QTBUG15378_exitAndExec(); + void exitAndStart(); + void exitAndExec(); void connectThreadFinishedSignalToObjectDeleteLaterSlot(); void wait2(); @@ -980,7 +980,7 @@ public: int m_prop; }; -void tst_QThread::QTBUG13810_exitAndStart() +void tst_QThread::exitAndStart() { QThread thread; thread.exit(555); //should do nothing @@ -1002,7 +1002,7 @@ void tst_QThread::QTBUG13810_exitAndStart() QCOMPARE(sync1.m_prop, 89); } -void tst_QThread::QTBUG15378_exitAndExec() +void tst_QThread::exitAndExec() { class Thread : public QThread { public: -- cgit v1.2.3