Home | History | Annotate | Download | only in tests

Lines Matching refs:testing

3 [ -f testing.sh ] && . testing.sh
17 #testing "name" "command" "result" "infile" "stdin"
19 # Testing operators
21 testing "-type l -a -type d -o -type p" \
23 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \
25 testing "-type l -o -type d -a -type p" \
27 testing "-type l -o -type d -type p" "find dir -type l -o -type d -type p" \
29 testing "-type l ( -type d -o -type l )" \
31 testing "extra parentheses" \
34 testing "( -type p -o -type d ) -type p" \
36 testing "-type l -o -type d -type p -o -type f" \
40 # Testing short-circuit evaluations
42 testing "-type f -a -print" \
44 testing "-print -o -print" \
51 # Testing previous failures
53 testing "-type f -user -exec" \
55 testing "-type l -newer -exec" \
57 testing "-perm (exact success)" \
59 testing "-perm (exact failure)" \
61 testing "-perm (min success)" \
63 testing "-perm (min failure)" \
65 testing "-perm (any success)" \
67 testing "-perm (any failure)" \
72 testing "unterminated -exec {}" \
74 testing "-exec {} +" \
78 testing "-name file" \
80 testing "-name FILE" \
83 testing "-iname file" \
85 testing "-iname FILE" \
89 testing "-name (no arguments)" \
91 testing "-iname (no arguments)" \
94 testing "" "find dir \( -iname file -o -iname missing \) -exec echo {} \;" \