summaryrefslogtreecommitdiffstats
path: root/tests/auto/qtemporaryfile
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-06-08 14:56:21 +0300
committerJanne Anttila <janne.anttila@digia.com>2009-06-08 14:56:21 +0300
commitb3b5ae13763c97bad4bfcdda539acf8656c34938 (patch)
treec212fc0a347a9b77bf0cf8a08f3ce764e82e421b /tests/auto/qtemporaryfile
parent7087433fb6f77746678963b1a97fc18daab831fa (diff)
Fixed tst_QTemporaryFile::renameFdLeak test case for Symbian.
Test data for Symbian was not deployed correctly.
Diffstat (limited to 'tests/auto/qtemporaryfile')
-rw-r--r--tests/auto/qtemporaryfile/qtemporaryfile.pro9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/qtemporaryfile/qtemporaryfile.pro b/tests/auto/qtemporaryfile/qtemporaryfile.pro
index a3a3910bd9..0f2a6ea732 100644
--- a/tests/auto/qtemporaryfile/qtemporaryfile.pro
+++ b/tests/auto/qtemporaryfile/qtemporaryfile.pro
@@ -2,4 +2,11 @@ load(qttest_p4)
SOURCES += tst_qtemporaryfile.cpp
QT = core
-!symbian:DEFINES += SRCDIR=\\\"$$PWD/\\\"
+
+symbian {
+ testData.sources = tst_qtemporaryfile.cpp
+ testData.path = .
+ DEPLOYMENT += testData
+}else {
+ DEFINES += SRCDIR=\\\"$$PWD/\\\"
+}