aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-08-26 13:06:34 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-08-26 14:04:25 +0200
commitddaa1db6fe5140ebf4a04d0e0400a7ff3fe83778 (patch)
treee7243f43af29a669909223f1a506700502d05173 /tests/auto/api/testdata
parent7bdf164b78948efc72fa48c975587c354eebf154 (diff)
Add missing data for test case.
Should have been part of 9f2e842af96885b6d358d32340a212790cf5cfd5. Change-Id: Ic73f1f91124f1139a13e656d677b07f842ca6afc Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/api/testdata')
-rw-r--r--tests/auto/api/testdata/disabled_install_group/main.cpp1
-rw-r--r--tests/auto/api/testdata/disabled_install_group/project.qbs10
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/api/testdata/disabled_install_group/main.cpp b/tests/auto/api/testdata/disabled_install_group/main.cpp
new file mode 100644
index 000000000..8b8d58de0
--- /dev/null
+++ b/tests/auto/api/testdata/disabled_install_group/main.cpp
@@ -0,0 +1 @@
+int main() { }
diff --git a/tests/auto/api/testdata/disabled_install_group/project.qbs b/tests/auto/api/testdata/disabled_install_group/project.qbs
new file mode 100644
index 000000000..19df87928
--- /dev/null
+++ b/tests/auto/api/testdata/disabled_install_group/project.qbs
@@ -0,0 +1,10 @@
+import qbs
+
+CppApplication {
+ files: "main.cpp"
+ Group {
+ condition: false
+ qbs.install: true
+ fileTagsFilter: product.type
+ }
+}