Home | History | Annotate | Download | only in tests

Lines Matching refs:testing

3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
12 testing "file1" "xxd file1" \
15 testing "file1 -l" "xxd -l 2 file1" \
18 testing "file2" "xxd file2" "" "" ""
19 testing "-" "xxd -" \
21 testing "xxd" "xxd" \
23 testing "-c 8 -g 4 file1" "xxd -c 8 -g 4 file1" \
25 testing "-c 8 -g 3 file1" "xxd -c 8 -g 3 file1" \
28 testing "-p" "xxd -p file1" "7468697320697320736f6d6520746578740a\n" "" ""
30 testing "-s" "xxd -s 13 file1" "0000000d: 7465 7874 0a text.\n" "" ""
32 testing "-r" "xxd file1 | xxd -r" "this is some text\n" "" ""
33 testing "-r -p" "xxd -p file1 | xxd -r -p" "this is some text\n" "" ""
35 testing "-r garbage" "echo '0000: 68 65 6c6c 6fxxxx' | xxd -r -" "hello" "" ""
39 testing "-r long" \
45 testing "-r -p long" \