sapling/eden/scm/tests/test-disablesymlinks.t
Jun Wu 75a8173a10 tests: enable chg for 572 tests
Summary:
Add `#chg-compatible` to 572 tests that seem to pass with chg enabled.
This should make them run faster.

Reviewed By: xavierd

Differential Revision: D18870507

fbshipit-source-id: fe895e733efffc9286cd3d17c7a156c803124395
2019-12-09 15:26:29 -08:00

38 lines
972 B
Perl

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