aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/blackbox-clangdb.qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-05-30 07:20:41 -0700
committerJake Petroules <jake.petroules@qt.io>2017-05-30 15:30:19 +0000
commitce4ffe10905b4baf539c1b40d841ffe6964f8eca (patch)
tree807874f89c8c533588c680ad077a6e48e1c08d09 /tests/auto/blackbox/blackbox-clangdb.qbs
parent8a7beb631787bbc61624f0fead0563b35649be3a (diff)
Move blackbox-java and blackbox-clangdb tests into their own files
No real reason for the separation, and more consistent with the rest of the tests. Change-Id: I7002a18c6e3441b6de2b80c6dd6daaa9d76c30cb Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/auto/blackbox/blackbox-clangdb.qbs')
-rw-r--r--tests/auto/blackbox/blackbox-clangdb.qbs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/auto/blackbox/blackbox-clangdb.qbs b/tests/auto/blackbox/blackbox-clangdb.qbs
new file mode 100644
index 000000000..b77c08d5e
--- /dev/null
+++ b/tests/auto/blackbox/blackbox-clangdb.qbs
@@ -0,0 +1,25 @@
+import qbs
+
+QbsAutotest {
+ testName: "blackbox-clangdb"
+
+ Depends { name: "qbs_app" }
+ Depends { name: "qbs-setup-toolchains" }
+
+ Group {
+ name: "testdata"
+ prefix: "testdata-clangdb/"
+ files: ["**/*"]
+ fileTags: []
+ }
+
+ files: [
+ "../shared.h",
+ "tst_blackboxbase.cpp",
+ "tst_blackboxbase.h",
+ "tst_clangdb.cpp",
+ "tst_clangdb.h",
+ ]
+ // TODO: Use Utilities.cStringQuote
+ cpp.defines: base.concat(['SRCDIR="' + path + '"'])
+}