comparison tests/test-symlinks @ 3750:0f550b87deb8

Compatibility fix for 'ln -sf'. ln of Solaris 8 only accepts "ln -f -s" (in that order), but as the -f isn't needed here, I simply dropped it.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 01 Dec 2006 22:09:05 +0100
parents fd77b7ee4aac
children 9dcf9d45cab8
comparison
equal deleted inserted replaced
3749:f9567a7fa3b3 3750:0f550b87deb8
33 echo "relglob:*.o" > .hgignore 33 echo "relglob:*.o" > .hgignore
34 rm a.c 34 rm a.c
35 rm dir/a.o 35 rm dir/a.o
36 rm dir/b.o 36 rm dir/b.o
37 mkdir dir/a.o 37 mkdir dir/a.o
38 ln -sf nonexist dir/b.o 38 ln -s nonexist dir/b.o
39 mkfifo a.c 39 mkfifo a.c
40 # it should show a.c, dir/a.o and dir/b.o deleted 40 # it should show a.c, dir/a.o and dir/b.o deleted
41 hg status 41 hg status
42 hg status a.c 42 hg status a.c
43 43