diff options
Diffstat (limited to 'shell/msh_test/msh-parsing')
-rw-r--r-- | shell/msh_test/msh-parsing/argv0.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/argv0.tests | 4 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/noeol.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/noeol.tests | 2 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/noeol2.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/noeol2.tests | 7 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/quote1.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/quote1.tests | 2 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/quote2.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/quote2.tests | 2 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/quote3.right | 3 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/quote3.tests | 8 | ||||
-rw-r--r-- | shell/msh_test/msh-parsing/quote4.right | 1 | ||||
-rwxr-xr-x | shell/msh_test/msh-parsing/quote4.tests | 2 |
14 files changed, 0 insertions, 36 deletions
diff --git a/shell/msh_test/msh-parsing/argv0.right b/shell/msh_test/msh-parsing/argv0.right deleted file mode 100644 index d86bac9..0000000 --- a/shell/msh_test/msh-parsing/argv0.right +++ /dev/null @@ -1 +0,0 @@ -OK diff --git a/shell/msh_test/msh-parsing/argv0.tests b/shell/msh_test/msh-parsing/argv0.tests deleted file mode 100755 index f5c40f6..0000000 --- a/shell/msh_test/msh-parsing/argv0.tests +++ /dev/null @@ -1,4 +0,0 @@ -if test $# = 0; then - exec "$THIS_SH" "$0" arg -fi -echo OK diff --git a/shell/msh_test/msh-parsing/noeol.right b/shell/msh_test/msh-parsing/noeol.right deleted file mode 100644 index e427984..0000000 --- a/shell/msh_test/msh-parsing/noeol.right +++ /dev/null @@ -1 +0,0 @@ -HELLO diff --git a/shell/msh_test/msh-parsing/noeol.tests b/shell/msh_test/msh-parsing/noeol.tests deleted file mode 100755 index a93113a..0000000 --- a/shell/msh_test/msh-parsing/noeol.tests +++ /dev/null @@ -1,2 +0,0 @@ -# next line has no EOL! -echo HELLO
\ No newline at end of file diff --git a/shell/msh_test/msh-parsing/noeol2.right b/shell/msh_test/msh-parsing/noeol2.right deleted file mode 100644 index d00491f..0000000 --- a/shell/msh_test/msh-parsing/noeol2.right +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/shell/msh_test/msh-parsing/noeol2.tests b/shell/msh_test/msh-parsing/noeol2.tests deleted file mode 100755 index 1220f05..0000000 --- a/shell/msh_test/msh-parsing/noeol2.tests +++ /dev/null @@ -1,7 +0,0 @@ -# last line has no EOL! -if true -then - echo 1 -else - echo 2 -fi
\ No newline at end of file diff --git a/shell/msh_test/msh-parsing/quote1.right b/shell/msh_test/msh-parsing/quote1.right deleted file mode 100644 index cb38205..0000000 --- a/shell/msh_test/msh-parsing/quote1.right +++ /dev/null @@ -1 +0,0 @@ -'1' diff --git a/shell/msh_test/msh-parsing/quote1.tests b/shell/msh_test/msh-parsing/quote1.tests deleted file mode 100755 index f558954..0000000 --- a/shell/msh_test/msh-parsing/quote1.tests +++ /dev/null @@ -1,2 +0,0 @@ -a=1 -echo "'$a'" diff --git a/shell/msh_test/msh-parsing/quote2.right b/shell/msh_test/msh-parsing/quote2.right deleted file mode 100644 index 3bc9edc..0000000 --- a/shell/msh_test/msh-parsing/quote2.right +++ /dev/null @@ -1 +0,0 @@ ->1 diff --git a/shell/msh_test/msh-parsing/quote2.tests b/shell/msh_test/msh-parsing/quote2.tests deleted file mode 100755 index bd966f3..0000000 --- a/shell/msh_test/msh-parsing/quote2.tests +++ /dev/null @@ -1,2 +0,0 @@ -a=1 -echo ">$a" diff --git a/shell/msh_test/msh-parsing/quote3.right b/shell/msh_test/msh-parsing/quote3.right deleted file mode 100644 index 069a46e..0000000 --- a/shell/msh_test/msh-parsing/quote3.right +++ /dev/null @@ -1,3 +0,0 @@ -Testing: in $empty"" -.. -Finished diff --git a/shell/msh_test/msh-parsing/quote3.tests b/shell/msh_test/msh-parsing/quote3.tests deleted file mode 100755 index 075e785..0000000 --- a/shell/msh_test/msh-parsing/quote3.tests +++ /dev/null @@ -1,8 +0,0 @@ -if test $# = 0; then - exec "$THIS_SH" quote3.tests abc "d e" -fi - -echo 'Testing: in $empty""' -empty='' -for a in $empty""; do echo ".$a."; done -echo Finished diff --git a/shell/msh_test/msh-parsing/quote4.right b/shell/msh_test/msh-parsing/quote4.right deleted file mode 100644 index b2901ea..0000000 --- a/shell/msh_test/msh-parsing/quote4.right +++ /dev/null @@ -1 +0,0 @@ -a b diff --git a/shell/msh_test/msh-parsing/quote4.tests b/shell/msh_test/msh-parsing/quote4.tests deleted file mode 100755 index f1dabfa..0000000 --- a/shell/msh_test/msh-parsing/quote4.tests +++ /dev/null @@ -1,2 +0,0 @@ -a_b='a b' -echo "$a_b" |