aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/path-probe/name-filter.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/path-probe/name-filter.qbs')
-rw-r--r--tests/auto/blackbox/testdata/path-probe/name-filter.qbs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/path-probe/name-filter.qbs b/tests/auto/blackbox/testdata/path-probe/name-filter.qbs
new file mode 100644
index 000000000..406988fed
--- /dev/null
+++ b/tests/auto/blackbox/testdata/path-probe/name-filter.qbs
@@ -0,0 +1,10 @@
+BaseApp {
+ inputNames: "tool"
+ inputSearchPaths: "bin"
+ inputNameFilter: {
+ return function(n) {
+ return n + ".2"
+ };
+ }
+ outputFilePaths: ["bin/tool.2"]
+}