aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/api/testdata/restored-warnings/restored-warnings.qbs')
-rw-r--r--tests/auto/api/testdata/restored-warnings/restored-warnings.qbs14
1 files changed, 9 insertions, 5 deletions
diff --git a/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs b/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
index f6a68f27c..9d4abb757 100644
--- a/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
+++ b/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
@@ -4,18 +4,22 @@ Project {
CppApplication {
name: "theProduct"
- property bool moreFiles: false
cpp.blubb: true
files: ["file.cpp", "main.cpp"]
- Group {
- condition: moreFiles
- files: ["blubb.cpp"]
- }
}
Product {
name: "theOtherProduct"
property bool dummy: { throw "this one comes from a thread"; }
}
+
+ Product {
+ name: "aThirdProduct"
+ property bool moreFiles: false
+ Group {
+ condition: moreFiles
+ files: ["blubb.txt"]
+ }
+ }
}