aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-01-11 13:48:42 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-01-12 12:55:29 +0000
commit02a1f962e2c6790fc3e1d50bbbb4fda9ce88472d (patch)
tree46460e1fe68595946f26078619f05d123fd16b02 /tests
parenta673f4f2591772eaa959fb9a24d66874e376a368 (diff)
Executor: Add missing check for module target artifact
Such files are not to be matched against Rule.inputs. This part was forgotten in 8ca922793f. Change-Id: I0a01b3642f4a16c09d189e8c2228205fd0e9962b Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/broken.cpp1
-rw-r--r--tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/thelib.qbs6
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/broken.cpp b/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/broken.cpp
new file mode 100644
index 000000000..c91736ab5
--- /dev/null
+++ b/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/broken.cpp
@@ -0,0 +1 @@
+syntax error
diff --git a/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/thelib.qbs b/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/thelib.qbs
index b45bba50a..41a6436d0 100644
--- a/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/thelib.qbs
+++ b/tests/auto/blackbox/testdata/dynamic-library-in-module/modules/thelib/thelib.qbs
@@ -19,4 +19,10 @@ Module {
fileTags: ["dynamiclibrary_import"]
filesAreTargets: true
}
+ Group {
+ name: "to be ignored"
+ filesAreTargets: true
+ files: "broken.cpp"
+ fileTags: ["cpp"]
+ }
}