aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/pkg-config-probe-sysroot
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-05-24 14:45:14 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-05-28 12:10:19 +0000
commit73f8478c9844aaf1282cc7461075f9c73230af2f (patch)
tree3b27e8b11893d0b52ff52b489a60e84da65b9941 /tests/auto/blackbox/testdata/pkg-config-probe-sysroot
parent57fd0ab336f0d88c007e4d7f5d09230d9a9e460b (diff)
Allow rules without output artifacts
It is occasionally useful to have a rule whose purpose lies solely in its "side effects", that is, it does not produce any actual files. This patch removes the necessity to declare a dummy artifact in that case. [ChangeLog] Added support for rules without output artifacts Change-Id: I38e76a5ddc78ffa768e8ae1f270ae2f7461c5ee7 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'tests/auto/blackbox/testdata/pkg-config-probe-sysroot')
-rw-r--r--tests/auto/blackbox/testdata/pkg-config-probe-sysroot/modules/themodule/themodule.qbs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/pkg-config-probe-sysroot/modules/themodule/themodule.qbs b/tests/auto/blackbox/testdata/pkg-config-probe-sysroot/modules/themodule/themodule.qbs
index 2b33922a2..ecbfd6c9d 100644
--- a/tests/auto/blackbox/testdata/pkg-config-probe-sysroot/modules/themodule/themodule.qbs
+++ b/tests/auto/blackbox/testdata/pkg-config-probe-sysroot/modules/themodule/themodule.qbs
@@ -11,10 +11,7 @@ Module {
Rule {
multiplex: true
- Artifact {
- filePath: "dummy.out"
- fileTags: ["theType"]
- }
+ outputFileTags: "theType"
prepare: {
var cmd = new JavaScriptCommand();
cmd.silent = true;