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/scatter.scm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 e2e-tests/tools/scatter.scm (limited to 'e2e-tests/tools/scatter.scm') diff --git a/e2e-tests/tools/scatter.scm b/e2e-tests/tools/scatter.scm new file mode 100644 index 0000000..805f4df --- /dev/null +++ b/e2e-tests/tools/scatter.scm @@ -0,0 +1,8 @@ +(define print + (command #:inputs (message #:type string) (other-message #:type string) + #:run "echo" message other-message + #:outputs (printed_output #:type stdout))) + +(workflow ((message #:type string) (other_messages #:type (array string))) + (scatter (print #:message message) + #:other-message other_messages)) -- cgit 1.4.1