aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-03-24 14:59:13 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-03-24 18:07:10 +0100
commit4062c2ad9cbb8f7a8eeea3fb82892d815743a481 (patch)
treee34819d625d86ee87508716b42e64afb47e710fb /tests/auto/api/testdata
parentbe572cbd6d782837def91b78846f72baeb1e1f51 (diff)
Add XFAIL autotest for QBS-537.
Change-Id: I98aa65cee4e448efa6b9ab32f2165e4cc77429ec Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests/auto/api/testdata')
-rw-r--r--tests/auto/api/testdata/build-single-file/compiled.cpp1
-rw-r--r--tests/auto/api/testdata/build-single-file/ignored1.cpp0
-rw-r--r--tests/auto/api/testdata/build-single-file/ignored2.cpp0
-rw-r--r--tests/auto/api/testdata/build-single-file/project.qbs5
4 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/api/testdata/build-single-file/compiled.cpp b/tests/auto/api/testdata/build-single-file/compiled.cpp
new file mode 100644
index 000000000..56757a701
--- /dev/null
+++ b/tests/auto/api/testdata/build-single-file/compiled.cpp
@@ -0,0 +1 @@
+void f() {}
diff --git a/tests/auto/api/testdata/build-single-file/ignored1.cpp b/tests/auto/api/testdata/build-single-file/ignored1.cpp
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/tests/auto/api/testdata/build-single-file/ignored1.cpp
diff --git a/tests/auto/api/testdata/build-single-file/ignored2.cpp b/tests/auto/api/testdata/build-single-file/ignored2.cpp
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/tests/auto/api/testdata/build-single-file/ignored2.cpp
diff --git a/tests/auto/api/testdata/build-single-file/project.qbs b/tests/auto/api/testdata/build-single-file/project.qbs
new file mode 100644
index 000000000..2ea989922
--- /dev/null
+++ b/tests/auto/api/testdata/build-single-file/project.qbs
@@ -0,0 +1,5 @@
+import qbs
+
+CppApplication {
+ files: ["ignored1.cpp", "ignored2.cpp", "compiled.cpp"]
+}