diff options
author | Denys Vlasenko | 2016-10-01 17:30:21 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-10-01 17:30:21 +0200 |
commit | cc0056db5c82b7965c019599f59f8f1d9e8d52fd (patch) | |
tree | 9d1b2859ff8bb2761f3f674f89657f935ae60150 /shell/ash_test/ash-read/read_r.tests | |
parent | 4d12e944eaf54f0fd0bbb6b70abbb77648cca795 (diff) | |
download | busybox-cc0056db5c82b7965c019599f59f8f1d9e8d52fd.zip busybox-cc0056db5c82b7965c019599f59f8f1d9e8d52fd.tar.gz |
ash testsuite: remove two inadvertent bashisms
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash_test/ash-read/read_r.tests')
-rwxr-xr-x | shell/ash_test/ash-read/read_r.tests | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/ash_test/ash-read/read_r.tests b/shell/ash_test/ash-read/read_r.tests index 2c4cc61..1f0a18a 100755 --- a/shell/ash_test/ash-read/read_r.tests +++ b/shell/ash_test/ash-read/read_r.tests @@ -1,2 +1,4 @@ -echo -e 'test\\\nbest' | (read reply; echo "$reply") -echo -e 'test\\\nbest' | (read -r reply; echo "$reply") +echo 'test\ +best' | (read reply; echo "$reply") +echo 'test\ +best' | (read -r reply; echo "$reply") |