Lines Matching refs:f
27 echo a > a/f || framework_failure_
28 echo b > b/f || framework_failure_
31 returns_ 1 cp a/f b/f c 2> /dev/null || fail=1
32 test -f a/f || fail=1
33 test -f b/f || fail=1
34 test -f c/f || fail=1
36 rm -f c/f
39 cp --backup=numbered a/f b/f c || fail=1
40 test -f a/f || fail=1
41 test -f b/f || fail=1
42 test -f c/f || fail=1
43 test -f c/f.~1~ || fail=1
44 rm -f c/f*
46 returns_ 1 mv a/f b/f c 2> /dev/null || fail=1
47 test -f a/f && fail=1
48 test -f b/f || fail=1
49 test -f c/f || fail=1
55 rm -f c/f* b/f
56 touch a/f
57 ln a/f b/g
58 mv a/f b/g c || fail=1
59 test -f a/f && fail=1
61 test -f c/f || fail=1
64 touch a/f b/f b/g
65 returns_ 1 mv a/f b/f b/g c 2> /dev/null || fail=1
66 test -f a/f && fail=1 # a/f should have been moved
67 test -f b/f || fail=1 # b/f should remain
69 test -f c/f || fail=1
74 rm -f a/f b/f c/f
75 echo a > a/f || framework_failure_
76 echo b > b/f || framework_failure_
77 returns_ 1 ln -f a/f b/f c 2> /dev/null || fail=1
79 test $(stat --format %i a/f) = $(stat --format %i c/f) || fail=1
81 test $(stat --format %i b/f) = $(stat --format %i c/f) && fail=1