##// END OF EJS Templates
bisect: avoid adding irrelevant revisions to bisect state...
bisect: avoid adding irrelevant revisions to bisect state When adding new revisions to the bisect state, it only makes sense to add information about revisions that are under consideration (i.e., those that are topologically between the known good and bad revisions). However, if the user passes in a revset (e.g., '!merge()' to exclude merge commits), hg will resolve the revset first and add all matching revisions to the bisect state (which in this case would likely be the majority of revisions in the repo). To avoid this, revisions should only be added to the bisect state if they are between the good and bad revisions (and therefore relevant to the bisection). -- Here are the results of some performance tests using the `mozilla-central` repo (since it is one of the largest freely-available hg repositories in the wild). These tests compare the performance of a locally-built `hg` before and after application of this series. Note that `--noupdate` is passed to avoid including update time (which should not vary across cases). Setup (run between each test): $ hg bisect --reset $ hg bisect --noupdate --bad 56c3ad4bde5c70714b784ccf15d099e0df0f5bde $ hg bisect --noupdate --good 57426696adaf08298af3027fa77486fee0633b13 Test using a revset that returns a very large number of revisions: $ time hg bisect --noupdate --skip '!merge()' > /dev/null Before: real 0m9.398s user 0m9.233s sys 0m0.120s After: real 0m1.513s user 0m1.425s sys 0m0.052s Test using a revset that is expensive to compute: $ time hg bisect --noupdate --skip 'desc("Bug")' > /dev/null Before: real 0m49.853s user 0m49.580s sys 0m0.243s After: real 0m4.120s user 0m4.036s sys 0m0.048s

File last commit:

r46431:8d72e29a default
r50337:81623652 default
Show More
test-mq-qrefresh-interactive.t
375 lines | 8.4 KiB | text/troff | Tads3Lexer
/ tests / test-mq-qrefresh-interactive.t
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 Create configuration
$ echo "[ui]" >> $HGRCPATH
$ echo "interactive=true" >> $HGRCPATH
help qrefresh (no record)
$ echo "[extensions]" >> $HGRCPATH
$ echo "mq=" >> $HGRCPATH
$ hg help qrefresh
hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...
update the current patch
If any file patterns are provided, the refreshed patch will contain only
the modifications that match those patterns; the remaining modifications
will remain in the working directory.
If -s/--short is specified, files currently included in the patch will be
refreshed just like matched files and remain in the patch.
If -e/--edit is specified, Mercurial will start your configured editor for
you to enter a message. In case qrefresh fails, you will find a backup of
your message in ".hg/last-message.txt".
hg add/remove/copy/rename work as usual, though you might want to use git-
style patches (-g/--git or [diff] git=1) to track copies and renames. See
the diffs help topic for more information on the git diff format.
Returns 0 on success.
Matt Mackall
help: fold repeatable option message into option table header...
r22117 options ([+] can be repeated):
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -e --edit invoke editor on commit messages
-g --git use git extended diff format
-s --short refresh only files already in the patch and
Matt Mackall
help: use RST to format option lists
r15145 specified files
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -U --currentuser add/update author field in patch with current user
Matt Mackall
help: use RST to format option lists
r15145 -u --user USER add/update author field in patch with given user
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -D --currentdate add/update date field in patch with current date
Matt Mackall
help: use RST to format option lists
r15145 -d --date DATE add/update date field in patch with given date
-I --include PATTERN [+] include names matching the given patterns
-X --exclude PATTERN [+] exclude names matching the given patterns
-m --message TEXT use text as commit message
-l --logfile FILE read commit message from file
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
Matt Mackall
help: tweak --verbose command help hint...
r22110 (some details hidden, use --verbose to show complete help)
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
help qrefresh (record)
$ echo "record=" >> $HGRCPATH
$ hg help qrefresh
hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...
update the current patch
If any file patterns are provided, the refreshed patch will contain only
the modifications that match those patterns; the remaining modifications
will remain in the working directory.
If -s/--short is specified, files currently included in the patch will be
refreshed just like matched files and remain in the patch.
If -e/--edit is specified, Mercurial will start your configured editor for
you to enter a message. In case qrefresh fails, you will find a backup of
your message in ".hg/last-message.txt".
hg add/remove/copy/rename work as usual, though you might want to use git-
style patches (-g/--git or [diff] git=1) to track copies and renames. See
the diffs help topic for more information on the git diff format.
Returns 0 on success.
Matt Mackall
help: fold repeatable option message into option table header...
r22117 options ([+] can be repeated):
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -e --edit invoke editor on commit messages
-g --git use git extended diff format
-s --short refresh only files already in the patch and
Matt Mackall
help: use RST to format option lists
r15145 specified files
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -U --currentuser add/update author field in patch with current user
Matt Mackall
help: use RST to format option lists
r15145 -u --user USER add/update author field in patch with given user
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -D --currentdate add/update date field in patch with current date
Matt Mackall
help: use RST to format option lists
r15145 -d --date DATE add/update date field in patch with given date
-I --include PATTERN [+] include names matching the given patterns
-X --exclude PATTERN [+] exclude names matching the given patterns
-m --message TEXT use text as commit message
-l --logfile FILE read commit message from file
Pierre-Yves David
help: backout f3c4edfd35e1 (mark boolean flags with [no-] in help) for now...
r30152 -i --interactive interactively select changes to refresh
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
Matt Mackall
help: tweak --verbose command help hint...
r22110 (some details hidden, use --verbose to show complete help)
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
$ hg init a
$ cd a
Base commit
$ cat > 1.txt <<EOF
> 1
> 2
> 3
> 4
> 5
> EOF
$ cat > 2.txt <<EOF
> a
> b
> c
> d
> e
> f
> EOF
$ mkdir dir
$ cat > dir/a.txt <<EOF
> hello world
>
> someone
> up
> there
> loves
> me
> EOF
$ hg add 1.txt 2.txt dir/a.txt
$ hg commit -m aaa
FUJIWARA Katsunori
record: omit meaningless 'qnew' suggestion at 'hg qnew -i'...
r25797 $ hg qrecord --config ui.interactive=false patch
abort: running non-interactively, use qnew instead
Martin von Zweigbergk
errors: introduce InputError and use it from commands and cmdutil...
r46431 [10]
FUJIWARA Katsunori
record: omit meaningless 'qnew' suggestion at 'hg qnew -i'...
r25797 $ hg qnew -i --config ui.interactive=false patch
abort: running non-interactively
Martin von Zweigbergk
errors: introduce InputError and use it from commands and cmdutil...
r46431 [10]
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 $ hg qnew -d '0 0' patch
Changing files
$ sed -e 's/2/2 2/;s/4/4 4/' 1.txt > 1.txt.new
$ sed -e 's/b/b b/' 2.txt > 2.txt.new
$ sed -e 's/hello world/hello world!/' dir/a.txt > dir/a.txt.new
$ mv -f 1.txt.new 1.txt
$ mv -f 2.txt.new 2.txt
$ mv -f dir/a.txt.new dir/a.txt
Whole diff
$ hg diff --nodates
diff -r ed27675cb5df 1.txt
--- a/1.txt
+++ b/1.txt
@@ -1,5 +1,5 @@
1
-2
+2 2
3
-4
+4 4
5
diff -r ed27675cb5df 2.txt
--- a/2.txt
+++ b/2.txt
@@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
diff -r ed27675cb5df dir/a.txt
--- a/dir/a.txt
+++ b/dir/a.txt
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
partial qrefresh
FUJIWARA Katsunori
record: omit meaningless 'qrefresh' suggestion at 'hg qrefresh -i'...
r25798 $ hg qrefresh -i --config ui.interactive=false
abort: running non-interactively
Martin von Zweigbergk
errors: introduce InputError and use it from commands and cmdutil...
r46431 [10]
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 $ hg qrefresh -i -d '0 0' <<EOF
> y
> y
> n
> y
> y
> n
> EOF
diff --git a/1.txt b/1.txt
2 hunks, 2 lines changed
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 examine changes to '1.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 @@ -1,3 +1,3 @@
1
-2
+2 2
3
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 record change 1/4 to '1.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 @@ -3,3 +3,3 @@
3
-4
+4 4
5
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 record change 2/4 to '1.txt'?
(enter ? for help) [Ynesfdaq?] n
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 diff --git a/2.txt b/2.txt
1 hunks, 1 lines changed
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 examine changes to '2.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 @@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 record change 3/4 to '2.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 diff --git a/dir/a.txt b/dir/a.txt
1 hunks, 1 lines changed
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 examine changes to 'dir/a.txt'?
(enter ? for help) [Ynesfdaq?] n
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
After partial qrefresh 'tip'
$ hg tip -p
changeset: 1:0738af1a8211
tag: patch
tag: qbase
tag: qtip
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: [mq]: patch
diff -r 1fd39ab63a33 -r 0738af1a8211 1.txt
--- a/1.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/1.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
1
-2
+2 2
3
4
5
diff -r 1fd39ab63a33 -r 0738af1a8211 2.txt
--- a/2.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/2.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
After partial qrefresh 'diff'
$ hg diff --nodates
diff -r 0738af1a8211 1.txt
--- a/1.txt
+++ b/1.txt
@@ -1,5 +1,5 @@
1
2 2
3
-4
+4 4
5
diff -r 0738af1a8211 dir/a.txt
--- a/dir/a.txt
+++ b/dir/a.txt
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
qrefresh interactively everything else
$ hg qrefresh -i -d '0 0' <<EOF
> y
> y
> y
> y
> EOF
diff --git a/1.txt b/1.txt
1 hunks, 1 lines changed
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 examine changes to '1.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 @@ -1,5 +1,5 @@
1
2 2
3
-4
+4 4
5
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 record change 1/2 to '1.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 diff --git a/dir/a.txt b/dir/a.txt
1 hunks, 1 lines changed
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 examine changes to 'dir/a.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426 @@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
Kyle Lippincott
patch: use a short, fixed-size message for last line of prompt (issue6158)...
r42766 record change 2/2 to 'dir/a.txt'?
(enter ? for help) [Ynesfdaq?] y
Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive...
r22589
Idan Kamara
record: add qrefresh -i/--interactive...
r14426
After final qrefresh 'tip'
$ hg tip -p
changeset: 1:2c3f66afeed9
tag: patch
tag: qbase
tag: qtip
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: [mq]: patch
diff -r 1fd39ab63a33 -r 2c3f66afeed9 1.txt
--- a/1.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/1.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
1
-2
+2 2
3
-4
+4 4
5
diff -r 1fd39ab63a33 -r 2c3f66afeed9 2.txt
--- a/2.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/2.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +1,5 @@
a
-b
+b b
c
d
e
diff -r 1fd39ab63a33 -r 2c3f66afeed9 dir/a.txt
--- a/dir/a.txt Thu Jan 01 00:00:00 1970 +0000
+++ b/dir/a.txt Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +1,4 @@
-hello world
+hello world!
someone
up
After qrefresh 'diff'
$ hg diff --nodates
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..