sapling/eden/scm/tests/test-disablesymlinks.t
Adam Simpkins ab3a7cb21f Move fb-mercurial sources into an eden/scm subdirectory.
Summary:
In preparation for merging fb-mercurial sources to the Eden repository,
move everything from the top-level directory into an `eden/scm`
subdirectory.
2019-11-13 16:04:48 -08:00

36 lines
955 B
Perl

$ . "$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)