Lines Matching refs:fail
24 split -n r/10 /dev/null || fail=1
25 test "$(stat -c %s x* | uniq -c | sed 's/^ *//; s/ /x/')" = "10x0" || fail=1
29 split -e -n r/10 /dev/null || fail=1
30 stat x?? 2>/dev/null && fail=1
34 split -n r/3 in > out || fail=1
35 compare /dev/null out || fail=1
37 split -n r/1/3 in > r1 || fail=1
38 split -n r/2/3 in > r2 || fail=1
39 split -n r/3/3 in > r3 || fail=1
45 compare exp-1 xaa || fail=1
46 compare exp-2 xab || fail=1
47 compare exp-3 xac || fail=1
48 compare exp-1 r1 || fail=1
49 compare exp-2 r2 || fail=1
50 compare exp-3 r3 || fail=1
51 test -f xad && fail=1
56 compare exp out || fail=1
61 (ulimit -n 20 && yes | head -n90 | split -n r/30 ) || fail=1
62 test "$(stat -c %s x* | uniq -c | sed 's/^ *//; s/ /x/')" = "30x6" || fail=1
64 Exit $fail