diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-22 00:33:38 +1000 |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-22 00:36:25 +1000 |
commit | f1f46be2f1a974ba4c42075cc0ebb5d950828677 (patch) | |
tree | ef86abb2dccf60496d1ee6fa3560ed8f1696b155 /tests | |
parent | 7e492011c2c937e8ede812f791b7ba63f521d676 (diff) | |
download | qt-creator-f1f46be2f1a974ba4c42075cc0ebb5d950828677.tar.gz |
Make tests follow Qt conventions by starting all unit tests with `tst_'.
Some scripts make use of this convention to differentiate unit tests
from applications which happen to link to testlib.
Reviewed-by: ossi
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/aggregation/aggregation.pro | 1 | ||||
-rw-r--r-- | tests/auto/cplusplus/ast/ast.pro | 2 | ||||
-rw-r--r-- | tests/auto/cplusplus/lookup/lookup.pro | 1 | ||||
-rw-r--r-- | tests/auto/cplusplus/semantic/semantic.pro | 1 | ||||
-rw-r--r-- | tests/auto/debugger/dumpers.pro | 2 | ||||
-rw-r--r-- | tests/auto/debugger/plugin.pro | 2 | ||||
-rw-r--r-- | tests/auto/fakevim/fakevim.pro | 1 | ||||
-rw-r--r-- | tests/auto/profilereader/profilereader.pro | 1 |
8 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/aggregation/aggregation.pro b/tests/auto/aggregation/aggregation.pro index c35c696239..ca1d1205a3 100644 --- a/tests/auto/aggregation/aggregation.pro +++ b/tests/auto/aggregation/aggregation.pro @@ -12,3 +12,4 @@ SOURCES += tst_aggregate.cpp \ HEADERS += $$AGGREGATION_PATH/aggregate.h \ $$AGGREGATION_PATH/aggregation_global.h +TARGET=tst_$$TARGET diff --git a/tests/auto/cplusplus/ast/ast.pro b/tests/auto/cplusplus/ast/ast.pro index 84733f97e6..2f5a0a33ea 100644 --- a/tests/auto/cplusplus/ast/ast.pro +++ b/tests/auto/cplusplus/ast/ast.pro @@ -3,3 +3,5 @@ CONFIG += qt warn_on console depend_includepath QT = core testlib include(../shared/shared.pri) SOURCES += tst_ast.cpp +TARGET=tst_$$TARGET + diff --git a/tests/auto/cplusplus/lookup/lookup.pro b/tests/auto/cplusplus/lookup/lookup.pro index cd02b70957..b80aa2f2b7 100644 --- a/tests/auto/cplusplus/lookup/lookup.pro +++ b/tests/auto/cplusplus/lookup/lookup.pro @@ -5,3 +5,4 @@ QT = core testlib include(../../../../src/libs/cplusplus/cplusplus-lib.pri) SOURCES += tst_lookup.cpp +TARGET=tst_$$TARGET diff --git a/tests/auto/cplusplus/semantic/semantic.pro b/tests/auto/cplusplus/semantic/semantic.pro index 37c013685f..09f80ab27a 100644 --- a/tests/auto/cplusplus/semantic/semantic.pro +++ b/tests/auto/cplusplus/semantic/semantic.pro @@ -4,3 +4,4 @@ QT = core testlib include(../shared/shared.pri) SOURCES += tst_semantic.cpp +TARGET=tst_$$TARGET diff --git a/tests/auto/debugger/dumpers.pro b/tests/auto/debugger/dumpers.pro index ca5338af38..201c36cb43 100644 --- a/tests/auto/debugger/dumpers.pro +++ b/tests/auto/debugger/dumpers.pro @@ -14,3 +14,5 @@ DEFINES += MACROSDEBUG INCLUDEPATH += $$DEBUGGERDIR $$UTILSDIR $$MACROSDIR +TARGET = tst_$$TARGET + diff --git a/tests/auto/debugger/plugin.pro b/tests/auto/debugger/plugin.pro index fae675b38f..7cc42dac75 100644 --- a/tests/auto/debugger/plugin.pro +++ b/tests/auto/debugger/plugin.pro @@ -12,3 +12,5 @@ DEFINES += MACROSDEBUG INCLUDEPATH += $$DEBUGGERDIR $$UTILSDIR $$MACROSDIR +TARGET = tst_$$TARGET + diff --git a/tests/auto/fakevim/fakevim.pro b/tests/auto/fakevim/fakevim.pro index 04fefc12d3..a4aaea078e 100644 --- a/tests/auto/fakevim/fakevim.pro +++ b/tests/auto/fakevim/fakevim.pro @@ -21,3 +21,4 @@ HEADERS += \ INCLUDEPATH += $$FAKEVIMDIR $$UTILSDIR +TARGET=tst_$$TARGET diff --git a/tests/auto/profilereader/profilereader.pro b/tests/auto/profilereader/profilereader.pro index b80ce8e495..486ddd547d 100644 --- a/tests/auto/profilereader/profilereader.pro +++ b/tests/auto/profilereader/profilereader.pro @@ -14,3 +14,4 @@ HEADERS += \ profilereader.h \ profilecache.h \ qtversionmanager.h +TARGET=tst_$$TARGET |