summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-02-09 12:43:59 +0100
committerJoerg Bornemann <joerg.bornemann@nokia.com>2012-02-09 12:43:59 +0100
commit7f078a9c3a2c022129e2f7a50a374fe3df051045 (patch)
treeadeb21510e29dab607c61cb7e885650733f1c078 /tests
parentc30429fcc2303289dbe0466190619b74a91bc5e2 (diff)
added QEXPECT_FAILs for file name macros and QTCREATORBUG-6932v1.0.9
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp
index c85c45a..47c41c2 100644
--- a/tests/tests.cpp
+++ b/tests/tests.cpp
@@ -707,26 +707,34 @@ void ParserTest::fileNameMacros()
target->expandFileNameMacros();
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(**D) subdir subdir\\subsubdir . . . ."));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(**B) Timmy Jimmy Kenny Eric Kyle Stan"));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(**F) Timmy.txt Jimmy.txt Kenny.txt Eric.txt Kyle.txt Stan.txt"));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(**R) subdir\\Timmy subdir\\subsubdir\\Jimmy Kenny Eric Kyle Stan"));
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(?D) subdir subdir\\subsubdir . . . ."));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(?B) Timmy Jimmy Kenny Eric Kyle Stan"));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(?F) Timmy.txt Jimmy.txt Kenny.txt Eric.txt Kyle.txt Stan.txt"));
QVERIFY(!target->m_commands.isEmpty());
command = target->m_commands.takeFirst();
+ QEXPECT_FAIL("", "Needs to be fixed. See QTCREATORBUG-6932.", Continue);
QCOMPARE(command.m_commandLine, QLatin1String("echo $(?R) subdir\\Timmy subdir\\subsubdir\\Jimmy Kenny Eric Kyle Stan"));
system("del generated.txt gen1.txt gen2.txt gen3.txt > NUL 2>&1");