aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-01-23 13:48:12 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-01-23 14:41:23 +0100
commit3d70857e178f7522e06e6984e34c8da54d6584fb (patch)
tree734d952f01eba6380eb62ffd1ed1ed8c08d297cb
parenta762572ec1cba9e96156edf281cfebbad256bfba (diff)
fix warning in autotestv1.1.21.1
Give the command a proper description. Change-Id: I7598197262a5ed77403af7fba361589def6c0063 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r--tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs b/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
index 62d7f8fe1..45d4b748d 100644
--- a/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
+++ b/tests/auto/blackbox/testdata/ruleConditions/modules/narfzort/narfzort.qbs
@@ -1,4 +1,5 @@
import qbs 1.0
+import qbs.FileInfo
import qbs.TextFile
Module {
@@ -16,6 +17,7 @@ Module {
}
prepare: {
var cmd = new JavaScriptCommand();
+ cmd.description = "generating " + FileInfo.fileName(output.fileName);
cmd.sourceCode = function() {
var f = new TextFile(output.fileName, TextFile.WriteOnly);
f.write("NARF! ZORT!");