aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/tools
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-11-12 20:07:14 -0800
committerJake Petroules <jake.petroules@qt.io>2017-11-15 11:55:46 +0000
commit6e9ac907c5427fdf5f764a5736e9edf4db8d49d2 (patch)
tree8a18c782471bafb70a5401f3beb4d9aca2168bde /tests/auto/tools
parentb5613da1391789fe661063ab9d30850aa96efd59 (diff)
Allow overriding the autotest profile for each test suite individually
For example, this allows a Qt profile to be set only for the Qt test suite, which avoids default profile properties "polluting" the results of other test suites. Change-Id: Ie6eb7131a9ce6b90c21b4e33e41f8f32df0e01e8 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/auto/tools')
-rw-r--r--tests/auto/tools/tools.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/tools/tools.qbs b/tests/auto/tools/tools.qbs
index bdf597b7e..64cced80e 100644
--- a/tests/auto/tools/tools.qbs
+++ b/tests/auto/tools/tools.qbs
@@ -11,5 +11,5 @@ QbsAutotest {
"tst_tools.h"
]
- cpp.defines: ["QBS_VERSION=" + Utilities.cStringQuote(qbsversion.version)]
+ cpp.defines: base.concat(["QBS_VERSION=" + Utilities.cStringQuote(qbsversion.version)])
}