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.pro23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/auto/tools/qmake/testdata/operators/operators.pro b/tests/auto/tools/qmake/testdata/operators/operators.pro
deleted file mode 100644
index 463fa73d81..0000000000
--- a/tests/auto/tools/qmake/testdata/operators/operators.pro
+++ /dev/null
@@ -1,23 +0,0 @@
-VAR = qt thread
-
-VAR += debug
-!contains( VAR, debug ) {
- message( "FAILED: +=" )
-}
-
-VAR -= thread
-contains( VAR, thread ) {
- message( "FAILED: -=" )
-}
-
-VAR = thread
-VAR *= thread
-!count( VAR, 1 ) {
- message( "FAILED: *=" )
-}
-
-VAR = thread QT_DLL debug
-VAR ~= s/QT_+/Q_
-!contains( VAR, Q_DLL ) {
- message( "FAILED: ~=" )
-}