aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/installed-artifact
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-03 11:47:34 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-03 10:00:55 +0000
commitfccf2bdb3ac5a4b3cc0e81a51e7c58cfebee28ef (patch)
tree19b60d327a3441bc0c669d3e27fdaffa308eec99 /tests/auto/api/testdata/installed-artifact
parentfc44e70c9db97048f67a36cd672ffe5e10972620 (diff)
Extend autotests to catch newly discovered bug.
Task-number: QBS-830 Change-Id: I9e2b8cd0d6b4436e142e6e74e9d1a2b5ff4d7946 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'tests/auto/api/testdata/installed-artifact')
-rw-r--r--tests/auto/api/testdata/installed-artifact/installed_artifact.qbs36
1 files changed, 22 insertions, 14 deletions
diff --git a/tests/auto/api/testdata/installed-artifact/installed_artifact.qbs b/tests/auto/api/testdata/installed-artifact/installed_artifact.qbs
index d1f9f54ea..7f7de9bc2 100644
--- a/tests/auto/api/testdata/installed-artifact/installed_artifact.qbs
+++ b/tests/auto/api/testdata/installed-artifact/installed_artifact.qbs
@@ -1,19 +1,27 @@
import qbs 1.0
-Application {
- name: "installedApp"
- type: "application"
- consoleApplication: true
- Depends { name: "cpp" }
- Group {
- files: "main.cpp"
- qbs.install: true
- qbs.installDir: "src"
+
+Project {
+ CppApplication {
+ name: "other app"
+ files: ["main.cpp"]
}
- qbs.installPrefix: "/usr"
- Group {
- fileTagsFilter: "application"
- qbs.install: true
- qbs.installDir: "bin"
+
+ CppApplication {
+ name: "installedApp"
+ type: "application"
+ consoleApplication: true
+ Depends { name: "other app" }
+ Group {
+ files: "main.cpp"
+ qbs.install: true
+ qbs.installDir: "src"
+ }
+ qbs.installPrefix: "/usr"
+ Group {
+ fileTagsFilter: "application"
+ qbs.install: true
+ qbs.installDir: "bin"
+ }
}
}