##// END OF EJS Templates
discovery: add extinct changesets to outgoing.excluded...
discovery: add extinct changesets to outgoing.excluded Before this change, push would incorrectly fast-path the bundle generation when extinct changesets are involved, because they are not added to outgoing.excluded. The reason to do so are related to outgoing.excluded being assumed to contain only secret changesets by scmutil.nochangesfound(), when displaying warnings like: changes found (ignored 9 secret changesets) Still, outgoing.excluded seems like a good API to report the extinct changesets instead of dedicated code and nothing in the docstring indicates it to be bound to secret changesets. This patch adds extinct changesets to outgoing.excluded and fixes scmutil.nochangesfound() to filter the excluded node list. Original version and test by Pierre-Yves.David@ens-lyon.org

File last commit:

r16912:6ef3107c default
r17248:6ffb35b2 stable
Show More
test-locate.t
121 lines | 1.5 KiB | text/troff | Tads3Lexer
Mads Kiilerich
tests: cleanup of tests that got lost in their own nested directories...
r16912 $ hg init repo
$ cd repo
Adrian Buehlmann
tests: unify test-locate
r12206 $ echo 0 > a
$ echo 0 > b
$ echo 0 > t.h
$ mkdir t
$ echo 0 > t/x
$ echo 0 > t/b
$ echo 0 > t/e.h
$ mkdir dir.h
$ echo 0 > dir.h/foo
$ hg ci -A -m m
adding a
adding b
adding dir.h/foo
adding t.h
adding t/b
adding t/e.h
adding t/x
$ touch nottracked
Matt Mackall
tests: cleanup exit code handling in unified tests
r12365 $ hg locate a
Adrian Buehlmann
tests: unify test-locate
r12206 a
Matt Mackall
tests: cleanup exit code handling in unified tests
r12365 $ hg locate NONEXISTENT
[1]
Adrian Buehlmann
tests: unify test-locate
r12206
$ hg locate
a
b
dir.h/foo
t.h
t/b
t/e.h
t/x
$ hg rm a
$ hg ci -m m
$ hg locate a
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate NONEXISTENT
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate relpath:NONEXISTENT
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate
b
dir.h/foo
t.h
t/b
t/e.h
t/x
$ hg locate -r 0 a
a
$ hg locate -r 0 NONEXISTENT
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0 relpath:NONEXISTENT
Matt Mackall
tests: add exit codes to unified tests
r12316 [1]
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0
a
b
dir.h/foo
t.h
t/b
t/e.h
t/x
-I/-X with relative path should work:
$ cd t
$ hg locate
b
dir.h/foo
t.h
t/b
t/e.h
t/x
$ hg locate -I ../t
t/b
t/e.h
t/x
Martin Geisler
tests: added a short description to issue numbers...
r12399 Issue294: hg remove --after dir fails when dir.* also exists
Adrian Buehlmann
tests: unify test-locate
r12206
$ cd ..
$ rm -r t
$ hg locate 't/**'
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 t/b (glob)
t/e.h (glob)
t/x (glob)
Adrian Buehlmann
tests: unify test-locate
r12206
$ mkdir otherdir
$ cd otherdir
$ hg locate b
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../b (glob)
../t/b (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate '*.h'
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t.h (glob)
../t/e.h (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate path:t/x
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t/x (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate 're:.*\.h$'
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t.h (glob)
../t/e.h (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0 b
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../b (glob)
../t/b (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0 '*.h'
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t.h (glob)
../t/e.h (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0 path:t/x
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t/x (glob)
Adrian Buehlmann
tests: unify test-locate
r12206 $ hg locate -r 0 're:.*\.h$'
Mads Kiilerich
tests: make (glob) on windows accept \ instead of /...
r15447 ../t.h (glob)
../t/e.h (glob)
Adrian Buehlmann
tests: unify test-locate
r12206
Mads Kiilerich
tests: cleanup of tests that got lost in their own nested directories...
r16912 $ cd ../..