summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-05-08 15:29:00 +0200
committerJoerg Bornemann <joerg.bornemann@nokia.com>2012-05-11 11:26:58 +0200
commit8cc0cf4b2c0ba187e3cea0046d861436394083cb (patch)
tree85f8bf02e1ab500ebe45246a2a400f578d45e7d2 /tests
parent91db04324a8a1bdc5902a1b0fad8271ccec3e451 (diff)
do not distinguish between quoted and unquoted target names
"targetName": foo and targetName: foo are now considered to be the same target. Even internally. This save us from keeping track of two versions of target names. Change-Id: I0eeb888a8905296b5c32f7930eea33c5c8ae13b1 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.cpp24
1 files changed, 3 insertions, 21 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp
index 46b9f6a..4aff11a 100644
--- a/tests/tests.cpp
+++ b/tests/tests.cpp
@@ -529,7 +529,7 @@ void ParserTest::dependentsWithSpace()
QVERIFY(target);
QCOMPARE(target->m_dependents.count(), 3);
QCOMPARE(target->m_dependents.at(0), QLatin1String("one"));
- QCOMPARE(target->m_dependents.at(1), QLatin1String("\"dependent two with spaces\""));
+ QCOMPARE(target->m_dependents.at(1), QLatin1String("dependent two with spaces"));
QCOMPARE(target->m_dependents.at(2), QLatin1String("three"));
}
@@ -851,24 +851,6 @@ void ParserTest::fileNameMacrosInDependents()
QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("C:\\MyProject\\tmp\\foo")); // $(@R)
QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("C:\\MyProject\\tmp\\foo")); // $$(@R)
QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("C:\\MyProject\\tmp\\foo")); // $(*R)
-
- target = mkfile->target(QLatin1String("\"C:\\My Project\\tmp\\foo.obj\""));
- QVERIFY(target);
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo.obj\"")); // $@
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo.obj\"")); // $$@
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo\"")); // $*
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\"")); // $(@D)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\"")); // $$(@D)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\"")); // $(*D)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo")); // $(@B)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo")); // $$(@B)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo")); // $(*B)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo.obj")); // $(@F)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo.obj")); // $$(@F)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("foo")); // $(*F)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo\"")); // $(@R)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo\"")); // $$(@R)
- QCOMPARE(target->m_dependents.takeFirst(), QLatin1String("\"C:\\My Project\\tmp\\foo\"")); // $(*R)
}
void ParserTest::windowsPathsInTargetName()
@@ -885,9 +867,9 @@ void ParserTest::windowsPathsInTargetName()
QVERIFY(target != 0);
QCOMPARE(target->targetName(), QLatin1String("C:\\bar.txt"));
- target = mkfile->target(QLatin1String("\"C:\\three.txt\""));
+ target = mkfile->target(QLatin1String("C:\\three.txt"));
QVERIFY(target != 0);
- QCOMPARE(target->targetName(), QLatin1String("\"C:\\three.txt\""));
+ QCOMPARE(target->targetName(), QLatin1String("C:\\three.txt"));
QCOMPARE(target->m_commands.count(), 2);
target = mkfile->target(QLatin1String("S"));