summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-12-12 16:28:30 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-14 07:07:09 +0100
commitab272fff56be6a7f37d30943c2927ceb32a409f3 (patch)
tree8d574b16e3c55252a4f41a9e357febda2e65c054 /tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro
parentd939dd8791134a41d36196213f463660a1c87421 (diff)
QObject-test: Reorganize subprocess.
On Windows, the signalbug.exe could not be launched since it is not next to tst_qobject.exe, which is in one of the 'release', 'debug' subfolders. Introduce a subdirectory structure similar to that of the QProcess test and use QFINDTESTDATA to locate it. Change-Id: Ie8f2ede8cb76f22a908cb77517a74076be11fbb7 Reviewed-by: Olivier Goffart <ogoffart@woboq.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro')
-rw-r--r--tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro b/tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro
new file mode 100644
index 0000000000..19d36a63a1
--- /dev/null
+++ b/tests/auto/corelib/kernel/qobject/signalbug/signalbug.pro
@@ -0,0 +1,17 @@
+TEMPLATE = app
+DEPENDPATH += .
+INCLUDEPATH += .
+CONFIG -= app_bundle debug_and_release
+CONFIG += console
+DESTDIR = ./
+QT -= gui
+wince*: {
+ LIBS += coredll.lib
+}
+# Input
+HEADERS += signalbug.h
+SOURCES += signalbug.cpp
+
+# This app is testdata for tst_qobject
+target.path = $$[QT_INSTALL_TESTS]/tst_qobject/$$TARGET
+INSTALLS += target