about summary refs log tree commit diff
path: root/e2e-tests/tools/pass-stdin.scm
diff options
context:
space:
mode:
authorArun Isaac2025-08-28 20:09:50 +0100
committerArun Isaac2025-11-16 22:42:59 +0000
commit767f80e7296c41a4428c73cadc90b953d252f8d7 (patch)
treece32736718146b2c01dd27c5627503786f33b505 /e2e-tests/tools/pass-stdin.scm
parent8b4d0320cbc2f07c9040aee7b6e7e4fb1fe08a91 (diff)
downloadravanan-767f80e7296c41a4428c73cadc90b953d252f8d7.tar.gz
ravanan-767f80e7296c41a4428c73cadc90b953d252f8d7.tar.lz
ravanan-767f80e7296c41a4428c73cadc90b953d252f8d7.zip
e2e-tests: Add tests based off of examples in the ccwl manual.
Diffstat (limited to 'e2e-tests/tools/pass-stdin.scm')
-rw-r--r--e2e-tests/tools/pass-stdin.scm8
1 files changed, 8 insertions, 0 deletions
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))