aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-04-25 08:40:48 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-25 13:07:56 +0200
commite1583664fd8a9eb66e37bdd2e1476bbf90383a4c (patch)
tree61096defbf7f6f4a796546c2f3de508181bc8826 /tests/auto/qml/debugger
parentb70c84564a135090740d2db98c04bf9ee8a6a4aa (diff)
Debugger: Fix warnings about declarative_debug in autotests
declarative_debug is deprecated and will be removed eventually. Change-Id: I1f5a61c91c25e37ff39e9154bcaa3cd74d60e109 Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
Diffstat (limited to 'tests/auto/qml/debugger')
-rw-r--r--tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro4
-rw-r--r--tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro4
-rw-r--r--tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro4
-rw-r--r--tests/auto/qml/debugger/qqmlinspector/app/app.pro2
-rw-r--r--tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro2
-rw-r--r--tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro2
-rw-r--r--tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro2
7 files changed, 13 insertions, 7 deletions
diff --git a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro b/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro
index 60355f1527..bb209404c1 100644
--- a/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro
+++ b/tests/auto/qml/debugger/qqmldebugclient/qqmldebugclient.pro
@@ -10,6 +10,8 @@ SOURCES += tst_qqmldebugclient.cpp \
INCLUDEPATH += ../shared
include(../shared/debugutil.pri)
-CONFIG += declarative_debug
+DEFINES += QT_QML_DEBUG_NO_WARNING
+
+CONFIG += qml_debug
QT += qml-private testlib
diff --git a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro b/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro
index bbf05b177c..39d9903e1c 100644
--- a/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro
+++ b/tests/auto/qml/debugger/qqmldebugservice/qqmldebugservice.pro
@@ -11,6 +11,8 @@ INCLUDEPATH += ../shared
include(../../../shared/util.pri)
include(../shared/debugutil.pri)
-CONFIG += parallel_test declarative_debug
+CONFIG += parallel_test
+
+DEFINES += QT_QML_DEBUG_NO_WARNING
QT += qml-private testlib
diff --git a/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro b/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro
index 0212d11cd1..c48ddcc1e7 100644
--- a/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro
+++ b/tests/auto/qml/debugger/qqmlenginedebugservice/qqmlenginedebugservice.pro
@@ -13,6 +13,8 @@ INCLUDEPATH += ../shared
include(../../../shared/util.pri)
include(../shared/debugutil.pri)
-CONFIG += parallel_test declarative_debug
+CONFIG += parallel_test
+
+DEFINES += QT_QML_DEBUG_NO_WARNING
QT += core-private qml-private quick-private v8-private testlib
diff --git a/tests/auto/qml/debugger/qqmlinspector/app/app.pro b/tests/auto/qml/debugger/qqmlinspector/app/app.pro
index ce8bfc645a..26831bc6a6 100644
--- a/tests/auto/qml/debugger/qqmlinspector/app/app.pro
+++ b/tests/auto/qml/debugger/qqmlinspector/app/app.pro
@@ -2,7 +2,7 @@ TARGET = app
DESTDIR = $$OUT_PWD
QT += qml quick
-CONFIG += declarative_debug
+CONFIG += qml_debug
macx:CONFIG -= app_bundle
SOURCES += main.cpp
diff --git a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro
index 6d4758182e..f6973ba4a9 100644
--- a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro
+++ b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.pro
@@ -7,6 +7,6 @@ SOURCES += tst_qqmlinspector.cpp
INCLUDEPATH += ../shared
include(../shared/debugutil.pri)
-CONFIG += parallel_test declarative_debug
+CONFIG += parallel_test
QT += qml testlib
diff --git a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro b/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro
index a83590cf63..2a665a01d0 100644
--- a/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro
+++ b/tests/auto/qml/debugger/qqmlprofilerservice/qqmlprofilerservice.pro
@@ -10,6 +10,6 @@ include(../shared/debugutil.pri)
OTHER_FILES += data/test.qml
-CONFIG += parallel_test declarative_debug
+CONFIG += parallel_test
QT += core qml testlib
diff --git a/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro b/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro
index 13d39c0225..99d3a3e3ae 100644
--- a/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro
+++ b/tests/auto/qml/debugger/qv8profilerservice/qv8profilerservice.pro
@@ -10,7 +10,7 @@ include(../shared/debugutil.pri)
OTHER_FILES += data/test.qml
-CONFIG += parallel_test declarative_debug
+CONFIG += parallel_test
QT += qml testlib