aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/group-location-warning/subdir
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/group-location-warning/subdir')
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/subdir/AGroupInOtherDir.qbs5
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/subdir/AndAnotherGroupInOtherDir.qbs6
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/subdir/OtherGroupInOtherDir.qbs5
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/subdir/ParentInOtherDir.qbs7
-rw-r--r--tests/auto/blackbox/testdata/group-location-warning/subdir/YetAnotherGroupInOtherDir.qbs6
5 files changed, 29 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/group-location-warning/subdir/AGroupInOtherDir.qbs b/tests/auto/blackbox/testdata/group-location-warning/subdir/AGroupInOtherDir.qbs
new file mode 100644
index 000000000..104b389bf
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/subdir/AGroupInOtherDir.qbs
@@ -0,0 +1,5 @@
+import qbs
+
+Group {
+ files: ["referenced-from-group-in-other-dir.txt"]
+}
diff --git a/tests/auto/blackbox/testdata/group-location-warning/subdir/AndAnotherGroupInOtherDir.qbs b/tests/auto/blackbox/testdata/group-location-warning/subdir/AndAnotherGroupInOtherDir.qbs
new file mode 100644
index 000000000..f122fc396
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/subdir/AndAnotherGroupInOtherDir.qbs
@@ -0,0 +1,6 @@
+import qbs
+
+Group {
+ prefix: "./"
+ files: ["*.wc"]
+}
diff --git a/tests/auto/blackbox/testdata/group-location-warning/subdir/OtherGroupInOtherDir.qbs b/tests/auto/blackbox/testdata/group-location-warning/subdir/OtherGroupInOtherDir.qbs
new file mode 100644
index 000000000..8c51ef2f8
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/subdir/OtherGroupInOtherDir.qbs
@@ -0,0 +1,5 @@
+import qbs
+
+Group {
+ files: [product.sourceDirectory + "/referenced-via-absolute-path.txt"]
+}
diff --git a/tests/auto/blackbox/testdata/group-location-warning/subdir/ParentInOtherDir.qbs b/tests/auto/blackbox/testdata/group-location-warning/subdir/ParentInOtherDir.qbs
new file mode 100644
index 000000000..c1458624a
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/subdir/ParentInOtherDir.qbs
@@ -0,0 +1,7 @@
+import qbs
+
+Product {
+ Group {
+ files: ["referenced-from-parent-in-other-dir.txt"]
+ }
+}
diff --git a/tests/auto/blackbox/testdata/group-location-warning/subdir/YetAnotherGroupInOtherDir.qbs b/tests/auto/blackbox/testdata/group-location-warning/subdir/YetAnotherGroupInOtherDir.qbs
new file mode 100644
index 000000000..a3e977682
--- /dev/null
+++ b/tests/auto/blackbox/testdata/group-location-warning/subdir/YetAnotherGroupInOtherDir.qbs
@@ -0,0 +1,6 @@
+import qbs
+
+Group {
+ prefix: product.sourceDirectory + '/'
+ files: ["referenced-via-absolute-prefix.txt"]
+}