sapling/eden/scm/tests/test-disablesymlinks.t

36 lines
955 B
Perl
Raw Normal View History

$ . "$TESTDIR/library.sh"
$ hg init test
$ cd test
$ echo foo > file
$ hg commit -Aqm "Add file"
Adding a symlink without the extension works
$ ln -s file link
$ ls -l | grep file
* file (glob)
* link -> file (glob)
$ hg add link
$ hg commit -m "Add link"
Adding a symlink with the extension works also
$ ln -s file link2
$ hg --config extensions.disablesymlinks= add link2
$ hg --config extensions.disablesymlinks= commit -m "Add link2"
$ ls -l | grep file
* file (glob)
* link -> file (glob)
* link2 -> file (glob)
Checking out a commit with the extension does not produce a symlink
$ hg checkout null
0 files updated, 0 files merged, 3 files removed, 0 files unresolved
$ hg checkout tip --config extensions.disablesymlinks=
3 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ ls -l | egrep '(file|link)'
* file (glob)
* link (glob)
* link2 (glob)
$ cat link
file (no-eol)