commit | 80591b0a000e88c284bd2ec355f27e19e1da7528 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Tue Mar 25 07:49:43 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Tue Mar 25 07:49:43 2008 +0000 |
tree | 101b48a0a2c5506e6c818717c8ef7d66b857d6a7 | |
parent | b02cea12129f1aa484701317f38466ec9e1c8462 [diff] [blame] |
ash: support for && and || in [[ expr ]]; add testsuite checks
diff --git a/shell/ash_test/ash-arith/arith-bash1.tests b/shell/ash_test/ash-arith/arith-bash1.tests new file mode 100755 index 0000000..b37b730 --- /dev/null +++ b/shell/ash_test/ash-arith/arith-bash1.tests
@@ -0,0 +1,5 @@ +# checks for [[ ]] + +# && and || +[[ a && "" ]]; echo $? +[[ a || "" ]]; echo $?