diff options
Diffstat (limited to 'tests/mv/leak-fd')
-rwxr-xr-x | tests/mv/leak-fd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mv/leak-fd b/tests/mv/leak-fd index 922a6579f..6e6e405db 100755 --- a/tests/mv/leak-fd +++ b/tests/mv/leak-fd @@ -32,7 +32,7 @@ cd $tmp || framework_failure=1 b="0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x y z -A B C D E F G H I J K L M N O P Q R S T U V W X Y Z" +_A _B _C _D _E _F _G _H _I _J _K _L _M _N _O _P _Q _R _S _T _U _V _W _X _Y _Z" for i in `echo $b`; do echo $i @@ -54,7 +54,7 @@ fi fail=0 mv * $other_partition_tmpdir || fail=1 -test -f ZZ/f && fail=1 +test -f $last_file/f && fail=1 rm .dirs ls -A > ../out || fail=1 |