mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
effa0da8de
Summary: The helper could be used in individual tests to enable chg if chg exists. This allows us to have more precise control on what tests to use chg instead of using a global flag in run-tests.py. This makes certain tests containing many hg commands much faster. For example, `test-revset.t` took 99 seconds before: % ./run-tests.py test-revset.t --time . # Ran 1 tests, 0 skipped, 0 failed. # Producing time report start end cuser csys real Test 0.000 99.990 86.410 12.000 99.990 test-revset.t And 10 seconds after: % ./run-tests.py test-revset.t --time . # Ran 1 tests, 0 skipped, 0 failed. # Producing time report start end cuser csys real Test 0.000 10.080 0.380 0.130 10.080 test-revset.t Also enable it for some other tests. Note the whitelist is not complete. We probably want to whitelist more tests in the future. The feature could be opted out by deleting `contrib/chg/chg`. Reviewed By: phillco Differential Revision: D6767036 fbshipit-source-id: 8220cf408aa198d5d8e2ca5127ca60e2070d3444
115 lines
1.8 KiB
Perl
115 lines
1.8 KiB
Perl
$ . helpers-usechg.sh
|
|
|
|
#require symlink
|
|
|
|
$ echo "[extensions]" >> $HGRCPATH
|
|
$ echo "mq=" >> $HGRCPATH
|
|
|
|
$ hg init
|
|
$ hg qinit
|
|
$ hg qnew base.patch
|
|
$ echo aaa > a
|
|
$ echo bbb > b
|
|
$ echo ccc > c
|
|
$ hg add a b c
|
|
$ hg qrefresh
|
|
$ readlink.py a
|
|
a -> a not a symlink
|
|
|
|
|
|
test replacing a file with a symlink
|
|
|
|
$ hg qnew symlink.patch
|
|
$ rm a
|
|
$ ln -s b a
|
|
$ hg qrefresh --git
|
|
$ readlink.py a
|
|
a -> b
|
|
|
|
$ hg qpop
|
|
popping symlink.patch
|
|
now at: base.patch
|
|
$ hg qpush
|
|
applying symlink.patch
|
|
now at: symlink.patch
|
|
$ readlink.py a
|
|
a -> b
|
|
|
|
|
|
test updating a symlink
|
|
|
|
$ rm a
|
|
$ ln -s c a
|
|
$ hg qnew --git -f updatelink
|
|
$ readlink.py a
|
|
a -> c
|
|
$ hg qpop
|
|
popping updatelink
|
|
now at: symlink.patch
|
|
$ hg qpush --debug
|
|
applying updatelink
|
|
patching file a
|
|
committing files:
|
|
a
|
|
committing manifest
|
|
committing changelog
|
|
updating the branch cache
|
|
now at: updatelink
|
|
$ readlink.py a
|
|
a -> c
|
|
$ hg st
|
|
|
|
|
|
test replacing a symlink with a file
|
|
|
|
$ ln -s c s
|
|
$ hg add s
|
|
$ hg qnew --git -f addlink
|
|
$ rm s
|
|
$ echo sss > s
|
|
$ hg qnew --git -f replacelinkwithfile
|
|
$ hg qpop
|
|
popping replacelinkwithfile
|
|
now at: addlink
|
|
$ hg qpush
|
|
applying replacelinkwithfile
|
|
now at: replacelinkwithfile
|
|
$ cat s
|
|
sss
|
|
$ hg st
|
|
|
|
|
|
test symlink removal
|
|
|
|
$ hg qnew removesl.patch
|
|
$ hg rm a
|
|
$ hg qrefresh --git
|
|
$ hg qpop
|
|
popping removesl.patch
|
|
now at: replacelinkwithfile
|
|
$ hg qpush
|
|
applying removesl.patch
|
|
now at: removesl.patch
|
|
$ hg st -c
|
|
C b
|
|
C c
|
|
C s
|
|
|
|
replace broken symlink with another broken symlink
|
|
|
|
$ ln -s linka linka
|
|
$ hg add linka
|
|
$ hg qnew link
|
|
$ hg mv linka linkb
|
|
$ rm linkb
|
|
$ ln -s linkb linkb
|
|
$ hg qnew movelink
|
|
$ hg qpop
|
|
popping movelink
|
|
now at: link
|
|
$ hg qpush
|
|
applying movelink
|
|
now at: movelink
|
|
$ readlink.py linkb
|
|
linkb -> linkb
|