diff options
author | Rolland Dudemaine <rolland@ghs.com> | 2011-11-15 16:28:31 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2011-11-15 16:28:31 (GMT) |
commit | 84ad4e1b4082f85463124e834b4502ff7efce7df (patch) | |
tree | a01bd41af78e3de7eabb3c2eb17f20f0686bd676 /tests/auto/qtextboundaryfinder | |
parent | 9d8a93ec30bebb3e102d7906d15cf3af9830993e (diff) | |
download | Qt-84ad4e1b4082f85463124e834b4502ff7efce7df.zip Qt-84ad4e1b4082f85463124e834b4502ff7efce7df.tar.gz Qt-84ad4e1b4082f85463124e834b4502ff7efce7df.tar.bz2 |
Add specific INTEGRITY cases for autotests requiring a target path.
SRCDIR is not parsed the same way due to the different qmake generation process.
furthermore, the full host path doesn't seem like a good idea to use for the path of the target filesystem.
Use "/" as default.
Merge-request: 1438
Reviewed-by: Harald Fernengel <harald.fernengel@nokia.com>
Diffstat (limited to 'tests/auto/qtextboundaryfinder')
-rw-r--r-- | tests/auto/qtextboundaryfinder/qtextboundaryfinder.pro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/qtextboundaryfinder/qtextboundaryfinder.pro b/tests/auto/qtextboundaryfinder/qtextboundaryfinder.pro index 5f3cb11..c52ca52 100644 --- a/tests/auto/qtextboundaryfinder/qtextboundaryfinder.pro +++ b/tests/auto/qtextboundaryfinder/qtextboundaryfinder.pro @@ -2,7 +2,11 @@ load(qttest_p4) QT = core HEADERS += SOURCES += tst_qtextboundaryfinder.cpp -!symbian:*:DEFINES += SRCDIR=\\\"$$PWD\\\" +integrity { + DEFINES += SRCDIR=\"/\" +} else:!symbian { + DEFINES += SRCDIR=\\\"$$PWD/\\\" +} wince*|symbian:{ addFiles.files = data |