summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptextensionplugin/test
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2010-10-29 13:22:19 (GMT)
committerKent Hansen <kent.hansen@nokia.com>2010-10-29 14:06:21 (GMT)
commit8cd4b7622ea425f8fef316ae4ae91133f29f53c5 (patch)
tree1c0f9a640dc4ab1ff8ab51bae28c556e5ab04340 /tests/auto/qscriptextensionplugin/test
parentbd3c35cf1cbdbde16df9357a08b8b45a96fa3a5e (diff)
downloadQt-8cd4b7622ea425f8fef316ae4ae91133f29f53c5.zip
Qt-8cd4b7622ea425f8fef316ae4ae91133f29f53c5.tar.gz
Qt-8cd4b7622ea425f8fef316ae4ae91133f29f53c5.tar.bz2
Add autotest for QScriptExtensionPlugin
It's only about four years overdue.
Diffstat (limited to 'tests/auto/qscriptextensionplugin/test')
-rw-r--r--tests/auto/qscriptextensionplugin/test/test.pro18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/qscriptextensionplugin/test/test.pro b/tests/auto/qscriptextensionplugin/test/test.pro
new file mode 100644
index 0000000..549bac2
--- /dev/null
+++ b/tests/auto/qscriptextensionplugin/test/test.pro
@@ -0,0 +1,18 @@
+load(qttest_p4)
+
+QT = core script
+SOURCES = ../tst_qscriptextensionplugin.cpp
+CONFIG -= app_bundle
+LIBS += -L../plugins/script -lstaticplugin
+
+TARGET = tst_qscriptextensionplugin
+CONFIG(debug_and_release) {
+ CONFIG(debug, debug|release) {
+ DESTDIR = ../debug
+ } else {
+ DESTDIR = ../release
+ }
+} else {
+ DESTDIR = ..
+}
+