Home | History | Annotate | Download | only in tests

Lines Matching refs:testing

3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "uu empty file" "uudecode -o - && echo yes" \
9 testing "uu 1-char" "uudecode -o -" "a" "" \
11 testing "uu 2-char" "uudecode -o -" "ab" "" \
13 testing "uu 3-char" "uudecode -o -" "abc" "" \
16 testing "b64 empty file" "uudecode -o - && echo yes" \
18 testing "b64 1-char" "uudecode -o -" "a" "" \
20 testing "b64 2-char" "uudecode -o -" "ab" "" \
22 testing "b64 3-char" "uudecode -o -" "abc" "" \
25 testing "filename" "uudecode && echo -ne 'abc' | cmp uudecode-fn-test - && echo -ne yes && rm uudecode-fn-test" \