aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-01-29 17:20:15 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-02-03 15:28:56 +0000
commit8c74d8c210e64bfe5ce6afe9374fb634d6d86d7a (patch)
tree5a1acbedd17b023521c131cf282cd13f3f6650b4
parente69e1e3719617d4fb48555c17e94af8e096f1647 (diff)
Add XFAIL'ing autotest.
Task-number: QBS-736 Change-Id: I69ae2f62c1258774fc0a2558aba5ec2b145431b9 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-rw-r--r--tests/auto/blackbox/testdata/nested-properties/product.qbs1
-rw-r--r--tests/auto/blackbox/tst_blackbox.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/nested-properties/product.qbs b/tests/auto/blackbox/testdata/nested-properties/product.qbs
index b2356599d..af747d405 100644
--- a/tests/auto/blackbox/testdata/nested-properties/product.qbs
+++ b/tests/auto/blackbox/testdata/nested-properties/product.qbs
@@ -3,6 +3,7 @@ import qbs
Product {
type: "mytype"
Depends { name: "higherlevel" }
+ Depends { name: "lowerlevel" }
Group {
files: ["dummy.txt"]
fileTags: ["dummy-input"]
diff --git a/tests/auto/blackbox/tst_blackbox.cpp b/tests/auto/blackbox/tst_blackbox.cpp
index d1e3353ab..753558ffb 100644
--- a/tests/auto/blackbox/tst_blackbox.cpp
+++ b/tests/auto/blackbox/tst_blackbox.cpp
@@ -1923,6 +1923,7 @@ void TestBlackbox::nestedProperties()
{
QDir::setCurrent(testDataDir + "/nested-properties");
QCOMPARE(runQbs(), 0);
+ QEXPECT_FAIL(0, "QBS-736", Abort);
QVERIFY2(m_qbsStdout.contains("value in higherlevel"), m_qbsStdout.constData());
}