aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs')
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs b/tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs
new file mode 100644
index 000000000..3a43d54ab
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs
@@ -0,0 +1,27 @@
+import qbs
+import "subdir/ParentInOtherDir.qbs" as ParentInOtherDir
+import "subdir/AGroupInOtherDir.qbs" as AGroupInOtherDir
+import "subdir/OtherGroupInOtherDir.qbs" as OtherGroupInOtherDir
+import "subdir/YetAnotherGroupInOtherDir.qbs" as YetAnotherGroupInOtherDir
+import "subdir/AndAnotherGroupInOtherDir.qbs" as AndAnotherGroupInOtherDir
+
+Project {
+ ParentInOtherDir {
+ name: "p1"
+ Depends { name: "gm" }
+
+ Group {
+ files: ["referenced-from-product.txt"]
+ }
+ GroupInSameDir { }
+ AGroupInOtherDir { }
+ OtherGroupInOtherDir { }
+ YetAnotherGroupInOtherDir { }
+ AndAnotherGroupInOtherDir { }
+ }
+
+ Product {
+ name: "p2"
+ AGroupInOtherDir { }
+ }
+}