summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-08-18 11:37:05 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-08-18 11:37:05 +0200
commit3ae514c6cd55cb0f63eea13c9d23593db38beee8 (patch)
tree15e4658ffebdd14f4aac9f146fb2f92a06155aa8 /tests/auto/qmake
parentcea26da032449d6eed252890721c230fb9ad8dd3 (diff)
unbreak qmake autotest
ok, that was a rather obvious braindamage ... :}
Diffstat (limited to 'tests/auto/qmake')
-rw-r--r--tests/auto/qmake/tst_qmake.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qmake/tst_qmake.cpp b/tests/auto/qmake/tst_qmake.cpp
index 825e49be46..1a3f843114 100644
--- a/tests/auto/qmake/tst_qmake.cpp
+++ b/tests/auto/qmake/tst_qmake.cpp
@@ -482,14 +482,14 @@ void tst_qmake::substitutes()
{
QString workDir = base_path + "/testdata/substitutes";
QVERIFY( test_compiler.qmake( workDir, "test" ));
- QVERIFY( test_compiler.exists( workDir, "test", Exe, "1.0.0" ));
- //QVERIFY( test_compiler.exists( workDir, "sub/test2", Exe, "1.0.0" ));
+ QVERIFY( test_compiler.exists( workDir, "test", Plain, "" ));
+ //QVERIFY( test_compiler.exists( workDir, "sub/test2", Plain, "" ));
QVERIFY( test_compiler.makeDistClean( workDir ));
QString buildDir = base_path + "/testdata/substitutes_build";
QVERIFY( test_compiler.qmake( workDir, "test", buildDir ));
- QVERIFY( test_compiler.exists( buildDir, "test", Exe, "1.0.0" ));
- //QVERIFY( test_compiler.exists( buildDir, "sub/test2", Exe, "1.0.0" ));
+ QVERIFY( test_compiler.exists( buildDir, "test", Plain, "" ));
+ //QVERIFY( test_compiler.exists( buildDir, "sub/test2", Plain, "" ));
QVERIFY( test_compiler.makeDistClean( buildDir ));
}