aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-07-06 10:16:09 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-07-06 10:16:09 +0200
commit675859cc33ac69bdb4d16dc5422957de6db91431 (patch)
tree906cf96806f3792b67ceb9b0b807ba7ecf311374 /tests/auto/blackbox/testdata
parentacf4a4bd8cc8eabdbbe3c2e9fef1cd6728501ff3 (diff)
parent73d0d3a247162b91d6b2c78f5a490e006168a2e4 (diff)
Merge 1.12 into master
Diffstat (limited to 'tests/auto/blackbox/testdata')
-rw-r--r--tests/auto/blackbox/testdata/no-such-profile/no-such-profile.qbs6
-rw-r--r--tests/auto/blackbox/testdata/plugin-dependency/plugin-dependency.qbs4
2 files changed, 8 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata/no-such-profile/no-such-profile.qbs b/tests/auto/blackbox/testdata/no-such-profile/no-such-profile.qbs
new file mode 100644
index 000000000..8e64ba478
--- /dev/null
+++ b/tests/auto/blackbox/testdata/no-such-profile/no-such-profile.qbs
@@ -0,0 +1,6 @@
+import qbs
+
+Product {
+ name: "theProduct"
+ property int p
+}
diff --git a/tests/auto/blackbox/testdata/plugin-dependency/plugin-dependency.qbs b/tests/auto/blackbox/testdata/plugin-dependency/plugin-dependency.qbs
index e89371528..c619b33ef 100644
--- a/tests/auto/blackbox/testdata/plugin-dependency/plugin-dependency.qbs
+++ b/tests/auto/blackbox/testdata/plugin-dependency/plugin-dependency.qbs
@@ -26,7 +26,7 @@ Project {
Depends { name: "cpp" }
Export {
Parameters {
- cpp.link: false
+ cpp.link: false // marker 1
}
}
}
@@ -55,7 +55,7 @@ Project {
name: "helper1"
files: ["helper1.cpp"]
Depends { name: "cpp" }
- Depends { name: "helper2"; cpp.link: false }
+ Depends { name: "helper2"; cpp.link: false /* marker 2 */ }
Export {
Depends { name: "cpp" }
Depends { name: "helper2"; cpp.link: false }