diff options
author | Peter Bex <peter@more-magic.net> | 2012-10-02 00:14:31 +0100 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2012-10-02 00:14:31 +0100 |
commit | aa8b8adf9492108580194a49fd98888a6dbc1909 (patch) | |
tree | 216ce3effe36261765089987267df6108e469a84 /tests/run.scm | |
parent | 4d6a0700a6f38f8ca26fa47cfa2e68015bfbd9cc (diff) | |
download | scsh-process-aa8b8adf9492108580194a49fd98888a6dbc1909.tar.gz |
Implement <<-redirection
Diffstat (limited to 'tests/run.scm')
-rw-r--r-- | tests/run.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.scm b/tests/run.scm index df73ac3..fbb1019 100644 --- a/tests/run.scm +++ b/tests/run.scm @@ -47,7 +47,7 @@ (test "Redirecting from object" '("blah" "foo" "testing, 1 2 3") - (run/strings (cat tmpfile -) (<< "testing, 1 2 3"))) + (run/strings (cat ,tmpfile -) (<< "testing, 1 2 3"))) (delete-file* tmpfile))) (test-group "Subprocesses" |