diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 17:55:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 17:55:51 +0200 |
commit | c4cf542c575068d55368e771abf6c358bfebf5d3 (patch) | |
tree | b916ff4bea0671437b80257fa82283ad8e09faab /shell/ash_test | |
parent | 1b73f8471a3694d2e6b035bb7f04e1f4df943f03 (diff) | |
download | busybox-w32-c4cf542c575068d55368e771abf6c358bfebf5d3.tar.gz busybox-w32-c4cf542c575068d55368e771abf6c358bfebf5d3.tar.bz2 busybox-w32-c4cf542c575068d55368e771abf6c358bfebf5d3.zip |
sh testsuite: create hush-redir/* and move files around
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test')
-rw-r--r-- | shell/ash_test/ash-redir/redir1.right | 12 | ||||
-rwxr-xr-x | shell/ash_test/ash-redir/redir1.tests | 40 | ||||
-rw-r--r-- | shell/ash_test/ash-redir/redir_script.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-redir/redir_script.tests | 29 | ||||
-rw-r--r-- | shell/ash_test/ash-redir/redir_space.right | 3 | ||||
-rwxr-xr-x | shell/ash_test/ash-redir/redir_space.tests | 6 |
6 files changed, 91 insertions, 0 deletions
diff --git a/shell/ash_test/ash-redir/redir1.right b/shell/ash_test/ash-redir/redir1.right new file mode 100644 index 000000000..15515d1af --- /dev/null +++ b/shell/ash_test/ash-redir/redir1.right | |||
@@ -0,0 +1,12 @@ | |||
1 | Test 0: var:ok | ||
2 | File created:ok | ||
3 | Test 1: var:ok | ||
4 | File created:ok | ||
5 | Test 2: var:ok | ||
6 | File created:ok | ||
7 | Test 3: var:ok | ||
8 | File created:ok | ||
9 | Test 4: var:ok | ||
10 | File created:ok | ||
11 | Test 5: var:ok | ||
12 | File created:ok | ||
diff --git a/shell/ash_test/ash-redir/redir1.tests b/shell/ash_test/ash-redir/redir1.tests new file mode 100755 index 000000000..ef2fbfb77 --- /dev/null +++ b/shell/ash_test/ash-redir/redir1.tests | |||
@@ -0,0 +1,40 @@ | |||
1 | rm shell_test_$$ 2>/dev/null | ||
2 | var=bad | ||
3 | >shell_test_$$ var=ok | ||
4 | echo "Test 0: var:$var" | ||
5 | test -f shell_test_$$ && echo "File created:ok" | ||
6 | |||
7 | rm shell_test_$$ 2>/dev/null | ||
8 | var=bad | ||
9 | var=ok >shell_test_$$ | ||
10 | echo "Test 1: var:$var" | ||
11 | test -f shell_test_$$ && echo "File created:ok" | ||
12 | |||
13 | rm shell_test_$$ 2>/dev/null | ||
14 | var=ok | ||
15 | true | var=bad >shell_test_$$ | ||
16 | echo "Test 2: var:$var" | ||
17 | test -f shell_test_$$ && echo "File created:ok" | ||
18 | |||
19 | rm shell_test_$$ 2>/dev/null | ||
20 | var=bad | ||
21 | { var=ok >shell_test_$$; } | ||
22 | echo "Test 3: var:$var" | ||
23 | test -f shell_test_$$ && echo "File created:ok" | ||
24 | |||
25 | rm shell_test_$$ 2>/dev/null | ||
26 | var=ok | ||
27 | { var=bad >shell_test_$$; } & | ||
28 | # cant use usleep as it isnt standard in $PATH -- | ||
29 | # we fail when testing busybox compiled solely as "hush" | ||
30 | wait | ||
31 | echo "Test 4: var:$var" | ||
32 | test -f shell_test_$$ && echo "File created:ok" | ||
33 | |||
34 | rm shell_test_$$ 2>/dev/null | ||
35 | var=ok | ||
36 | ( var=bad >shell_test_$$ ) | ||
37 | echo "Test 5: var:$var" | ||
38 | test -f shell_test_$$ && echo "File created:ok" | ||
39 | |||
40 | rm shell_test_$$ 2>/dev/null | ||
diff --git a/shell/ash_test/ash-redir/redir_script.right b/shell/ash_test/ash-redir/redir_script.right new file mode 100644 index 000000000..6694ed334 --- /dev/null +++ b/shell/ash_test/ash-redir/redir_script.right | |||
@@ -0,0 +1 @@ | |||
Ok: script fd is not closed | |||
diff --git a/shell/ash_test/ash-redir/redir_script.tests b/shell/ash_test/ash-redir/redir_script.tests new file mode 100755 index 000000000..ccc497d7b --- /dev/null +++ b/shell/ash_test/ash-redir/redir_script.tests | |||
@@ -0,0 +1,29 @@ | |||
1 | # Builds a " 3>&- 4>&-" string. | ||
2 | # Note: one of these fds is a directory opened to /proc/self/fd | ||
3 | # for globbing. It is unwanted, but I don't know how to filter it out. | ||
4 | find_fds() { | ||
5 | fds="" | ||
6 | for f in /proc/self/fd/*; do | ||
7 | test "$f" = "/proc/self/fd/0" && continue | ||
8 | test "$f" = "/proc/self/fd/1" && continue | ||
9 | test "$f" = "/proc/self/fd/2" && continue | ||
10 | fds="$fds ${f##*/}>&-" | ||
11 | done | ||
12 | } | ||
13 | |||
14 | find_fds | ||
15 | fds1="$fds" | ||
16 | |||
17 | # One of the fds is open to the script body | ||
18 | # Close it while executing something. | ||
19 | eval "find_fds $fds" | ||
20 | |||
21 | # Shell should not lose that fd. Did it? | ||
22 | find_fds | ||
23 | test x"$fds1" = x"$fds" && { echo "Ok: script fd is not closed"; exit 0; } | ||
24 | |||
25 | echo "Bug: script fd is closed" | ||
26 | echo "fds1:$fds1" | ||
27 | echo "fds2:$fds" | ||
28 | exit 1 | ||
29 | |||
diff --git a/shell/ash_test/ash-redir/redir_space.right b/shell/ash_test/ash-redir/redir_space.right new file mode 100644 index 000000000..084295204 --- /dev/null +++ b/shell/ash_test/ash-redir/redir_space.right | |||
@@ -0,0 +1,3 @@ | |||
1 | z1.tmp: 1 | ||
2 | z2.tmp: 1 | ||
3 | "z1.tmp z2.tmp": TEST 0 | ||
diff --git a/shell/ash_test/ash-redir/redir_space.tests b/shell/ash_test/ash-redir/redir_space.tests new file mode 100755 index 000000000..c0b543098 --- /dev/null +++ b/shell/ash_test/ash-redir/redir_space.tests | |||
@@ -0,0 +1,6 @@ | |||
1 | v='z1.tmp z2.tmp' | ||
2 | echo TEST >$v | ||
3 | echo 'z1.tmp:' `cat 'z1.tmp' 2>/dev/null; echo $?` | ||
4 | echo 'z2.tmp:' `cat 'z2.tmp' 2>/dev/null; echo $?` | ||
5 | echo '"z1.tmp z2.tmp":' `cat 'z1.tmp z2.tmp' 2>/dev/null; echo $?` | ||
6 | rm z*.tmp | ||