diff options
author | Jari Aalto <jari.aalto@cante.net> | 2004-07-27 13:29:18 +0000 |
---|---|---|
committer | Jari Aalto <jari.aalto@cante.net> | 2009-09-12 16:46:56 +0000 |
commit | b80f6443b6b7b620c7272664c66ecb0b120a0998 (patch) | |
tree | 9f71c98d8fe8fa0f41d95e1eb4227f32a09d43ca /tests/cprint.right | |
parent | 7117c2d221b2aed4ede8600f6a36b7c1454b4f55 (diff) | |
download | android_external_bash-b80f6443b6b7b620c7272664c66ecb0b120a0998.tar.gz android_external_bash-b80f6443b6b7b620c7272664c66ecb0b120a0998.tar.bz2 android_external_bash-b80f6443b6b7b620c7272664c66ecb0b120a0998.zip |
Imported from ../bash-3.0.tar.gz.
Diffstat (limited to 'tests/cprint.right')
-rw-r--r-- | tests/cprint.right | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cprint.right b/tests/cprint.right index 6b711b8..5dd629d 100644 --- a/tests/cprint.right +++ b/tests/cprint.right @@ -14,7 +14,7 @@ tf () echo a }; i=0; - while (( " i < 3 " )); do + while (( i < 3 )); do test -r /dev/fd/$i; i=$(( i + 1 )); done; @@ -26,7 +26,7 @@ tf () if [[ -r /dev/fd/0 && -w /dev/fd/1 ]]; then echo ok >/dev/null; else - if (( " 7 > 40 " )); then + if (( 7 > 40 )); then echo oops; else echo done; |