summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/operators/operators.pro
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/qmake/testdata/operators/operators.pro')
-rw-r--r--tests/auto/tools/qmake/testdata/operators/operators.pro22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/auto/tools/qmake/testdata/operators/operators.pro b/tests/auto/tools/qmake/testdata/operators/operators.pro
index 5285c1a982..d6eb3d13c7 100644
--- a/tests/auto/tools/qmake/testdata/operators/operators.pro
+++ b/tests/auto/tools/qmake/testdata/operators/operators.pro
@@ -1,24 +1,24 @@
-CONFIG = qt thread
+VAR = qt thread
-CONFIG += debug
-!contains( CONFIG, debug ) {
+VAR += debug
+!contains( VAR, debug ) {
message( "FAILED: +=" )
}
-CONFIG -= thread
-contains( CONFIG, thread ) {
+VAR -= thread
+contains( VAR, thread ) {
message( "FAILED: -=" )
}
-CONFIG = thread
-CONFIG *= thread
-!count( CONFIG, 1 ) {
+VAR = thread
+VAR *= thread
+!count( VAR, 1 ) {
message( "FAILED: *=" )
}
-CONFIG = thread QT_DLL debug
-CONFIG ~= s/QT_+/Q_
-!contains( CONFIG, Q_DLL ) {
+VAR = thread QT_DLL debug
+VAR ~= s/QT_+/Q_
+!contains( VAR, Q_DLL ) {
message( "FAILED: ~=" )
}