Home | History | Annotate | Download | only in tests

Lines Matching full:file1

7 echo "one" > file1
11 testing "cat file1 file2" "cat file1 file2" "one\ntwo\n" "" ""
12 testing "cat - file" "cat - file1" "zero\none\n" "" "zero\n"
13 testing "cat file -" "cat file1 -" "one\nzero\n" "" "zero\n"
15 testing "cat file1 notfound file2" \
16 "cat file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \
20 testing "cat file1" \
21 'cat "$FILE" > file1 && cmp "$FILE" file1 && echo yes' \
24 testing "cat - file1" \
25 "cat - file1 | diff -a -U 0 - file1 | tail -n 1" \
32 rm file1 file2