aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-09-26 15:32:14 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-09-26 17:10:20 +0200
commitebc11e4612444bce428bbacb91f0f26906666749 (patch)
treed20df3a66c48ee497a0b6a269577651fc27321c6 /tests
parent0ac4c1cf0d5db2f43ec297037c969289d44eb643 (diff)
fix evaluation in subitems of disabled products
Property evaluation in subitems of disabled products didn't work properly and led to evaluation errors. Even though a product is disabled, we must handle its subitems in the ModuleLoader to make module properties available. Task-number: QBS-671 Change-Id: Ibe051357095766b47e242b65c7899baeb6b0ee43 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/blackbox/testdata/disabledProduct/disabledProduct.qbs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/disabledProduct/disabledProduct.qbs b/tests/auto/blackbox/testdata/disabledProduct/disabledProduct.qbs
index 0c44995c7..c57615c10 100644
--- a/tests/auto/blackbox/testdata/disabledProduct/disabledProduct.qbs
+++ b/tests/auto/blackbox/testdata/disabledProduct/disabledProduct.qbs
@@ -3,4 +3,8 @@ import qbs
CppApplication {
condition: false
files: "main.cpp"
+ Group {
+ condition: qbs.targetOS.contains("stuff")
+ qbs.install: false
+ }
}