Home | History | Annotate | Download | only in tests

Lines Matching refs:testing

3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
28 testing "-b" "type_test -b" "" "" ""
29 testing "-c" "type_test -c" "L" "" ""
30 testing "-d" "type_test -d" "d" "" ""
31 testing "-f" "type_test -f" "fs" "" ""
32 testing "-h" "type_test -h" "L" "" ""
33 testing "-L" "type_test -L" "L" "" ""
34 testing "-s" "type_test -s" "ds" "" ""
35 testing "-S" "type_test -S" "" "" ""
36 testing "-p" "type_test -p" "p" "" ""
37 testing "-e" "type_test -e" "dfLsp" "" ""
38 testing "! -e" "type_test ! -e" "n" "" ""
45 testing "test" "test "" || test a && echo yes" "yes\n" "" ""
46 testing "-n" "test -n "" || test -n a && echo yes" "yes\n" "" ""
47 testing "-z" "test -n a || test -n "" && echo yes" "yes\n" "" ""
48 testing "a = b" "test a = b || test "" = "" && echo yes" "yes\n" "" ""
49 testing "a != b" "test "" != "" || test a = b && echo yes" "yes\n" "" ""
58 testing "-eq" "arith_test -eq" "e\n" "" ""
59 testing "-ne" "arith_test -ne" "l\ng\n" "" ""
60 testing "-gt" "arith_test -gt" "g\n" "" ""
61 testing "-ge" "arith_test -ge" "e\ng\n" "" ""
62 testing "-lt" "arith_test -lt" "l\n" "" ""
63 testing "-le" "arith_test -le" "l\ne\n" "" ""