diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2012-06-22 12:03:39 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-07-04 02:46:27 +0200 |
commit | bcf20e122a037b9679ca47d3b95986db9f49c915 (patch) | |
tree | 956b1c3f1d02159d3d116bd98a29d66f36671aad /tests/auto/corelib/global/qlogging/test | |
parent | 10edf63174414cc95165c4fc14a3278e944dfbe2 (diff) |
Avoid load(testcase) for installing test helper apps
Make test projects declare TEST_HELPER_INSTALLS rather than calling a
function exported by testcase.prf. load(testcase) may be unsafe, as
testcase.prf should be processed after default_post.prf.
Fixes silent disabling of various autotests.
Change-Id: I56b35ffd653a637ad5ab18d64dd1a1edadfac59f
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Reviewed-by: Kurt Korbatits <kurt.korbatits@nokia.com>
Diffstat (limited to 'tests/auto/corelib/global/qlogging/test')
-rw-r--r-- | tests/auto/corelib/global/qlogging/test/test.pro | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/corelib/global/qlogging/test/test.pro b/tests/auto/corelib/global/qlogging/test/test.pro index 57e9ba30ae..d791f9ca76 100644 --- a/tests/auto/corelib/global/qlogging/test/test.pro +++ b/tests/auto/corelib/global/qlogging/test/test.pro @@ -4,5 +4,4 @@ TARGET = ../tst_qlogging QT = core testlib SOURCES = ../tst_qlogging.cpp -load(testcase) # for target.path and installTestHelperApp() -installTestHelperApp("../app/app",app,app) +TEST_HELPER_INSTALLS = ../app/app |