diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-08-18 09:37:05 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-08-18 09:37:05 (GMT) |
commit | 3ae514c6cd55cb0f63eea13c9d23593db38beee8 (patch) | |
tree | 15e4658ffebdd14f4aac9f146fb2f92a06155aa8 /tests | |
parent | cea26da032449d6eed252890721c230fb9ad8dd3 (diff) | |
download | Qt-3ae514c6cd55cb0f63eea13c9d23593db38beee8.zip Qt-3ae514c6cd55cb0f63eea13c9d23593db38beee8.tar.gz Qt-3ae514c6cd55cb0f63eea13c9d23593db38beee8.tar.bz2 |
unbreak qmake autotest
ok, that was a rather obvious braindamage ... :}
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qmake/tst_qmake.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qmake/tst_qmake.cpp b/tests/auto/qmake/tst_qmake.cpp index 825e49b..1a3f843 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 )); } |