From 767f80e7296c41a4428c73cadc90b953d252f8d7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 28 Aug 2025 20:09:50 +0100 Subject: e2e-tests: Add tests based off of examples in the ccwl manual. --- e2e-tests/tools/pass-stdin.scm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 e2e-tests/tools/pass-stdin.scm (limited to 'e2e-tests/tools/pass-stdin.scm') diff --git a/e2e-tests/tools/pass-stdin.scm b/e2e-tests/tools/pass-stdin.scm new file mode 100644 index 0000000..4ba251c --- /dev/null +++ b/e2e-tests/tools/pass-stdin.scm @@ -0,0 +1,8 @@ +(define count-bytes + (command #:inputs (file #:type File) + #:run "wc" "-c" + #:outputs (bytes #:type stdout) + #:stdin file)) + +(workflow ((file #:type File)) + (count-bytes #:file file)) -- cgit 1.4.1