aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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());
}