aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/ruleConditions
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-02-14 16:10:40 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-02-18 10:22:57 +0100
commite92f68531460e78203ad5419a7e45d96a77339f5 (patch)
tree7a4160aeac6a7017b8a2b781750a9b11e70de314 /tests/auto/blackbox/testdata/ruleConditions
parentf5697c64ef4f1c2784b18702e6ff842ae124deb5 (diff)
Use dynamic rules in some autotests.
They are not strictly necessary there, but add coverage of this feature. Change-Id: I4409575cb8a81b2fca0166388afb56c4701616b1 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/ruleConditions')
-rw-r--r--tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs b/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
index 75bebf74d..b29fb55ec 100644
--- a/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
+++ b/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
@@ -11,10 +11,11 @@ Module {
Rule {
condition: product.moduleProperty("narfzort", "buildZort");
inputs: ["narf"]
- Artifact {
- fileName: product.name + "." + input.fileName + ".zort"
+ outputFileTags: ["zort"]
+ outputArtifacts: [{
+ filePath: product.name + "." + input.fileName + ".zort",
fileTags: ["zort"]
- }
+ }]
prepare: {
var cmd = new JavaScriptCommand();
cmd.description = "generating " + FileInfo.fileName(output.fileName);