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 "(no options)" "du -k du_test" "4\tdu_test/test\n8\tdu_test\n" "" ""
13 testing "-s" "du -k -s du_test" "8\tdu_test\n" "" ""
19 testing "counts symlinks without following" "du -ks du_test" "8\tdu_test\n" "" ""
20 testing "-L follows symlinks" "du -ksL du_test" "16\tdu_test\n" "" ""
22 testing "-L avoid endless loop" "du -ksL du_test" "16\tdu_test\n" "" ""
25 testing "-HL follows symlinks" "du -ksHL du_test" "16\tdu_test\n" "" ""
26 testing "-H does not follow unspecified symlinks" "du -ksH du_test" "8\tdu_test\n" "" ""
27 testing "-LH does not follow unspecified symlinks" "du -ksLH du_test" "8\tdu_test\n" "" ""
28 testing "-H follows specified symlinks" "du -ksH du_test/xyz" "8\tdu_test/xyz\n" "" ""