diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-06-08 11:56:21 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-06-08 11:56:21 (GMT) |
commit | b3b5ae13763c97bad4bfcdda539acf8656c34938 (patch) | |
tree | c212fc0a347a9b77bf0cf8a08f3ce764e82e421b | |
parent | 7087433fb6f77746678963b1a97fc18daab831fa (diff) | |
download | Qt-b3b5ae13763c97bad4bfcdda539acf8656c34938.zip Qt-b3b5ae13763c97bad4bfcdda539acf8656c34938.tar.gz Qt-b3b5ae13763c97bad4bfcdda539acf8656c34938.tar.bz2 |
Fixed tst_QTemporaryFile::renameFdLeak test case for Symbian.
Test data for Symbian was not deployed correctly.
-rw-r--r-- | tests/auto/qtemporaryfile/qtemporaryfile.pro | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/qtemporaryfile/qtemporaryfile.pro b/tests/auto/qtemporaryfile/qtemporaryfile.pro index a3a3910..0f2a6ea 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/\\\" +} |