diff --git a/test/blackbox-tests/test-cases/quoting/quotes-multi/dune b/test/blackbox-tests/test-cases/quoting/quotes-multi/dune new file mode 100644 index 00000000..3e834869 --- /dev/null +++ b/test/blackbox-tests/test-cases/quoting/quotes-multi/dune @@ -0,0 +1,4 @@ + +(alias + ((name runtest) + (action (echo "lines: ${read-lines:foo}")))) \ No newline at end of file diff --git a/test/blackbox-tests/test-cases/quoting/quotes-multi/foo b/test/blackbox-tests/test-cases/quoting/quotes-multi/foo new file mode 100644 index 00000000..98a86f9e --- /dev/null +++ b/test/blackbox-tests/test-cases/quoting/quotes-multi/foo @@ -0,0 +1,3 @@ +foo +bar +baz \ No newline at end of file diff --git a/test/blackbox-tests/test-cases/quoting/run.t b/test/blackbox-tests/test-cases/quoting/run.t index 17015512..a9e3c98b 100644 --- a/test/blackbox-tests/test-cases/quoting/run.t +++ b/test/blackbox-tests/test-cases/quoting/run.t @@ -25,3 +25,6 @@ The targets should only be interpreted as a single path when quoted Entering directory 'quote-from-context' count_args alias runtest Number of args: 3 + + $ dune runtest --root quotes-multi 2>&1 | grep -v Entering + lines: foo bar baz