Lines Matching refs:testing
3 [ -f testing.sh ] && . testing.sh
7 testing "xargs" "xargs && echo yes" "hello\nyes\n" "" "hello"
8 testing "xargs spaces" "xargs" \
11 testing "xargs -n 0" "xargs -n 0 2>/dev/null || echo ok" "ok\n" \
13 testing "xargs -n 2" "xargs -n 2" "one two\nthree\n" "" "one \ntwo\n three"
14 testing "xargs -n exact match" "xargs -n 3" "one two three\n" "" "one two three"
15 testing "xargs2" "xargs -n2" "one two\nthree four\nfive\n" "" \
17 testing "xargs -s too long" "xargs -s 9 echo 2>/dev/null || echo ok" \
19 testing "xargs -s 13" "xargs -s 13 echo" "one two\nthree\n" "" "one \ntwo\n three"
20 testing "xargs -s 12" "xargs -s 12 echo" "one\ntwo\nthree\n" "" "one \ntwo\n three"
23 testing "xargs command -opt" "xargs -n2 ls -1" "one\ntwo\nthree\n" "" \
29 testing "xargs -n exact match"
30 testing "xargs -s exact match"
31 testing "xargs -s 0"
32 testing "xargs -s impossible"