aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/jsextensions-binaryfile
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/jsextensions-binaryfile
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/jsextensions-binaryfile')
-rw-r--r--tests/auto/blackbox/testdata/jsextensions-binaryfile/binaryfile.qbs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/jsextensions-binaryfile/binaryfile.qbs b/tests/auto/blackbox/testdata/jsextensions-binaryfile/binaryfile.qbs
index 7d3ada851..bf6d4a4cf 100644
--- a/tests/auto/blackbox/testdata/jsextensions-binaryfile/binaryfile.qbs
+++ b/tests/auto/blackbox/testdata/jsextensions-binaryfile/binaryfile.qbs
@@ -5,10 +5,7 @@ Product {
type: ["dummy"]
Rule {
multiplex: true
- Artifact {
- filePath: "dummy.dat"
- fileTags: ["dummy"]
- }
+ outputFileTags: "dummy"
prepare: {
var commands = [];
var cmd = new JavaScriptCommand();