aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/wildcard_renaming
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2012-12-06 10:54:37 +0100
committerJoerg Bornemann <joerg.bornemann@digia.com>2012-12-06 11:13:39 +0100
commitfb09fa02fc5323e931f314f873fea78853b15939 (patch)
tree8a32f3e51c6ad8b78aebc3dc1768d6536e8058f0 /tests/auto/blackbox/testdata/wildcard_renaming
parent2be4ff05d017ac5ecd729cf9ad2f1597295b55fe (diff)
Fix renaming files to be installed that are matched by a wildcard.
The problem is that files matched by an "install" rule are currently not added to the target artifacts if a build graph already exists and they are "implicitly added" by adding or renaming a file in a group matched by a wildcard (i.e. the change happens without touching the project file). Task-number: QBS-146 Change-Id: Iec499de8dd88e3ac599b7435ec441aad7689f55a Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/blackbox/testdata/wildcard_renaming')
-rw-r--r--tests/auto/blackbox/testdata/wildcard_renaming/pioniere.txt0
-rw-r--r--tests/auto/blackbox/testdata/wildcard_renaming/wildcard_renaming.qbs9
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/wildcard_renaming/pioniere.txt b/tests/auto/blackbox/testdata/wildcard_renaming/pioniere.txt
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/tests/auto/blackbox/testdata/wildcard_renaming/pioniere.txt
diff --git a/tests/auto/blackbox/testdata/wildcard_renaming/wildcard_renaming.qbs b/tests/auto/blackbox/testdata/wildcard_renaming/wildcard_renaming.qbs
new file mode 100644
index 000000000..fafe77ae5
--- /dev/null
+++ b/tests/auto/blackbox/testdata/wildcard_renaming/wildcard_renaming.qbs
@@ -0,0 +1,9 @@
+import qbs.base 1.0
+
+Product {
+ type: "installed_content"
+ Group {
+ fileTags: "install"
+ files: "*"
+ }
+}