Lines Matching refs:BIGTEST
7 BIGTEST="one\ntwo\nthree\nfour\nfive\nsix\nseven\neight\nnine\nten\neleven\n"
8 echo -ne "$BIGTEST" > file1
13 testing "tail -n out of bounds" "tail -n 999 file1" "$BIGTEST" "" ""
19 testing "tail -c out of bounds" "tail -c 999 file1" "$BIGTEST" "" ""
30 "" "$BIGTEST"
31 testing "tail noseek -n out of bounds" "tail -n 999" "$BIGTEST" "" "$BIGTEST"
34 "$BIGTEST"
35 testing "tail noseek -n+ outof bounds" "tail -n +999" "" "" "$BIGTEST"
37 "even\neight\nnine\nten\neleven\n" "" "$BIGTEST"
38 testing "tail noseek -c out of bounds" "tail -c 999" "$BIGTEST" "" "$BIGTEST"
40 "x\nseven\neight\nnine\nten\neleven\n" "" "$BIGTEST"
41 testing "tail noseek -c+ out of bonds" "tail -c +999" "" "" "$BIGTEST"