aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/tst_tools.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2012-10-18 14:59:32 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2012-10-19 10:24:47 +0200
commitd6a10a767f1bef5ddf079c723e6c5a35cfe7df52 (patch)
tree62002383fc630cbbd984e704aa0ef52417c699d7 /tests/auto/tools/tst_tools.cpp
parent7a0091638c9870555badd46db11014eaff8b020b (diff)
Get rid of special treatment for files ending in ".qbp".
- Deprecate the ".qbp" suffix. - Do not go up the directory tree when looking for project files. Change-Id: I39ece65683556b720fb940dde27e485f865cf086 Task-number: QBS-137 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/tools/tst_tools.cpp')
-rw-r--r--tests/auto/tools/tst_tools.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/tools/tst_tools.cpp b/tests/auto/tools/tst_tools.cpp
index fe14856b0..e4758ad34 100644
--- a/tests/auto/tools/tst_tools.cpp
+++ b/tests/auto/tools/tst_tools.cpp
@@ -100,10 +100,10 @@ private slots:
&& QDir(multiProjectsDir).exists());
qbs::CommandLineParser parser;
const QStringList args(QLatin1String("-f"));
- QString projectFilePath = multiProjectsDir + QLatin1String("/project.qbp");
+ QString projectFilePath = multiProjectsDir + QLatin1String("/project.qbs");
QVERIFY(parser.parseCommandLine(args + QStringList(projectFilePath)));
QCOMPARE(projectFilePath, parser.projectFileName());
- projectFilePath = oneProjectDir + QLatin1String("/project.qbp");
+ projectFilePath = oneProjectDir + QLatin1String("/project.qbs");
QVERIFY(parser.parseCommandLine(args + QStringList(oneProjectDir)));
QCOMPARE(projectFilePath, parser.projectFileName());
QVERIFY(!parser.parseCommandLine(args + QStringList(noProjectsDir)));