diff options
author | Holger Ihrig <holger.ihrig@nokia.com> | 2011-08-24 12:53:32 +0200 |
---|---|---|
committer | Holger Ihrig <holger.ihrig@nokia.com> | 2011-08-31 10:08:38 +0200 |
commit | 012ba8c0e5270f962dbc891039c32f49d31c565b (patch) | |
tree | 499a88b02862551708eb0f2c0f366afa8b998054 /tests/auto/corelib/io/qfileinfo/qfileinfo.pro | |
parent | a7d682dd9c9271d137d5aa73a9192a812492a596 (diff) |
Moving relevant tests to corelib/io
Marked Test for qdiriterator as insignificant. See QTBUG-21160
Marked Test for qresourceengine as insignificant. See QTBUG-21159
Task-number: QTBUG-21066
Change-Id: I72848a651ff3e7aff1d6105dd49124e4ed070a44
Reviewed-on: http://codereview.qt.nokia.com/3577
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests/auto/corelib/io/qfileinfo/qfileinfo.pro')
-rw-r--r-- | tests/auto/corelib/io/qfileinfo/qfileinfo.pro | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/auto/corelib/io/qfileinfo/qfileinfo.pro b/tests/auto/corelib/io/qfileinfo/qfileinfo.pro new file mode 100644 index 0000000000..2fd626a57e --- /dev/null +++ b/tests/auto/corelib/io/qfileinfo/qfileinfo.pro @@ -0,0 +1,33 @@ +load(qttest_p4) +SOURCES += tst_qfileinfo.cpp + +QT = core-private + + +RESOURCES += qfileinfo.qrc + +wince*:|symbian: { + deploy.files += qfileinfo.qrc tst_qfileinfo.cpp + res.files = resources\\file1 resources\\file1.ext1 resources\\file1.ext1.ext2 + res.path = resources + DEPLOYMENT += deploy res +} + +win32*:LIBS += -ladvapi32 -lnetapi32 + +symbian { + TARGET.CAPABILITY=AllFiles + LIBS *= -lefsrv + INCLUDEPATH *= $$MW_LAYER_SYSTEMINCLUDE # Needed for e32svr.h in S^3 envs + } + +# support for running test from shadow build directory +wince* { + DEFINES += SRCDIR=\\\"\\\" +} else:symbian { + # do not define SRCDIR at all +} else { + DEFINES += SRCDIR=\\\"$$PWD/\\\" +} + +CONFIG += parallel_test |