diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-10-24 15:38:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:35 +0200 |
commit | 83c28bc98a3cb439c3dbb3824f4ede4eb14798a3 (patch) | |
tree | 1d2ac9c673278c1d854b0843719e05f58b07b503 /tests/test/script/testscript | |
parent | 5bfa47e072eb0592a4df15dbf68ce3ea76383905 (diff) |
Rename tests/test/script/ to tests/test/script/runner/
Diffstat (limited to 'tests/test/script/testscript')
-rw-r--r-- | tests/test/script/testscript | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/tests/test/script/testscript b/tests/test/script/testscript deleted file mode 100644 index 4d5d3b3..0000000 --- a/tests/test/script/testscript +++ /dev/null @@ -1,72 +0,0 @@ -$* -$* -i 0 <foo -$* -o foo >foo -$* -o foo >- -$* -e foo 2>- - -$* -o foo -o bar >>EOO -foo -bar -EOO - -$* -i 1 <<EOI >>EOO -foo -bar -EOI -foo -bar -EOO - -$* -i 2 <<EOI 2>>EOE -foo -bar -EOI -foo -bar -EOE - -$* -i 2 -s 1 <<EOI 2>>EOE != 0 -foo -bar -EOI -foo -bar -EOE - -$* -i 2 -o baz -s 10 <<EOI 1>baz 2>>EOE == 10 -foo -bar -EOI -foo -bar -EOE - -# No-newline tests. -# -# @@ TMP Need does not compare test. -# -$* -i 1 <:"foo" >:"foo" # no-newline-str -#\ -$* -i 1 <:"foo" >!"foo" # no-newline-str-fail1 -$* -i 1 <"foo" >:!"foo" # no-newline-str-fail2 -#\ - -$* -i 1 <<:EOI >>:EOO # no-newline-doc -foo -EOI -foo -EOO - -#\ -$* -i 1 <<:EOI >>!EOO # no-newline-doc-fail1 -foo -EOI -foo -EOO - -$* -i 1 <<EOI >>:!EOO # no-newline-doc-fail2 -foo -EOI -foo -EOO -#\ |