Lines Matching refs:testing
6 [ -f testing.sh ] && . testing.sh
13 testing "text" "$PRINTF TEXT" "TEXT" "" ""
14 testing "escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
16 testing "%b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
18 testing "null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19 testing "trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
37 testing "extra args" "$PRINTF 'abc%s!%ddef\n' X 42 ARG 36" \
40 testing "'%3c'" "$PRINTF '%3c' x" " x" "" ""
41 testing "'%-3c'" "$PRINTF '%-3c' x" "x " "" ""
42 testing "'%+d'" "$PRINTF '%+d' 5" "+5" "" ""
45 testing "'%5d%4d' 1 21 321 4321 54321" \
47 testing "'%c %c' 78 79" "$PRINTF '%c %c' 78 79" "7 7" "" ""
48 testing "'%d %d' 78 79" "$PRINTF '%d %d' 78 79" "78 79" "" ""
49 testing "'%f %f' 78 79" "$PRINTF '%f %f' 78 79" \
51 testing "'f f' 78 79" "$PRINTF 'f f' 78 79 2>/dev/null" "f f" "" ""
52 testing "'%i %i' 78 79" "$PRINTF '%i %i' 78 79" "78 79" "" ""
53 testing "'%o %o' 78 79" "$PRINTF '%o %o' 78 79" "116 117" "" ""
54 testing "'%u %u' 78 79" "$PRINTF '%u %u' 78 79" "78 79" "" ""
55 testing "'%u %u' -1 -2" "$PRINTF '%u %u' -1 -2" \
57 testing "'%x %X' 78 79" "$PRINTF '%x %X' 78 79" "4e 4F" "" ""
58 testing "'%g %G' 78 79" "$PRINTF '%g %G' 78 79" "78 79" "" ""
59 testing "'%s %s' 78 79" "$PRINTF '%s %s' 78 79" "78 79" "" ""
61 testing "%.s acts like %.0s" "$PRINTF %.s_ 1 2 3 4 5" "_____" "" ""
62 testing "corner case" "$PRINTF '\\8'" '\8' '' ''
66 testing "printf posix inconsistency" "$PRINTF '\\0066-%b' '\\0066'" "\x066-6" \
69 testing "printf \x" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \