##// END OF EJS Templates
tests: require regexes in unified tests to be marked with " (re)"...
Brodie Rao -
r12375:02990e22 default
parent child Browse files
Show More
@@ -0,0 +1,32 b''
1 Simple commands:
2
3 $ echo foo
4 foo
5 $ echo 'bar\nbaz' | cat
6 bar
7 baz
8
9 Multi-line command:
10
11 $ foo() {
12 > echo bar
13 > }
14 $ foo
15 bar
16
17 Regular expressions:
18
19 $ echo foobarbaz
20 foobar.* (re)
21 $ echo barbazquux
22 .*quux.* (re)
23
24 Literal match ending in " (re)":
25
26 $ echo 'foo (re)'
27 foo (re)
28
29 Exit code:
30
31 $ false
32 [1]
@@ -503,9 +503,6 b' def tsttest(test, options):'
503
503
504 def rematch(el, l):
504 def rematch(el, l):
505 try:
505 try:
506 # hack to deal with graphlog, which looks like bogus regexes
507 if el.startswith('|'):
508 el = '\\' + el
509 # ensure that the regex matches to the end of the string
506 # ensure that the regex matches to the end of the string
510 return re.match(el + r'\Z', l)
507 return re.match(el + r'\Z', l)
511 except re.error:
508 except re.error:
@@ -531,10 +528,10 b' def tsttest(test, options):'
531
528
532 if el == l: # perfect match (fast)
529 if el == l: # perfect match (fast)
533 postout.append(" " + l)
530 postout.append(" " + l)
534 elif el and el[2:] and rematch(el, l): # fallback regex match
531 elif el and el.endswith(" (re)\n") and rematch(el[:-6] + '\n', l):
535 postout.append(" " + el)
532 postout.append(" " + el) # fallback regex match
536 else: # mismatch - let diff deal with it
533 else:
537 postout.append(" " + l)
534 postout.append(" " + l) # let diff deal with it
538
535
539 if pos in after:
536 if pos in after:
540 postout += after.pop(pos)
537 postout += after.pop(pos)
@@ -227,9 +227,9 b' old file -- date clamped to 1980'
227 $ hg archive ../old.zip
227 $ hg archive ../old.zip
228 $ unzip -l ../old.zip
228 $ unzip -l ../old.zip
229 Archive: ../old.zip
229 Archive: ../old.zip
230 \s*Length.*
230 \s*Length.* (re)
231 .*-----.*
231 .*-----.* (re)
232 .*147.*80.*00:00.*old/\.hg_archival\.txt
232 .*147.*80.*00:00.*old/\.hg_archival\.txt (re)
233 .*0.*80.*00:00.*old/old
233 .*0.*80.*00:00.*old/old (re)
234 .*-----.*
234 .*-----.* (re)
235 \s*147\s+2 files
235 \s*147\s+2 files (re)
@@ -78,5 +78,5 b' attack /tmp/test'
78 $ hg manifest -r4
78 $ hg manifest -r4
79 /tmp/test
79 /tmp/test
80 $ hg update -Cr4
80 $ hg update -Cr4
81 abort: No such file or directory: .*/test-audit-path\.t/target//tmp/test
81 abort: No such file or directory: .*/test-audit-path\.t/target//tmp/test (re)
82 [255]
82 [255]
@@ -8,8 +8,8 b''
8 $ echo "badext2 =" >> $HGRCPATH
8 $ echo "badext2 =" >> $HGRCPATH
9
9
10 $ hg -q help help
10 $ hg -q help help
11 \*\*\* failed to import extension badext from .*/badext.py: bit bucket overflow
11 \*\*\* failed to import extension badext from .*/badext.py: bit bucket overflow (re)
12 \*\*\* failed to import extension badext2: No module named badext2
12 *** failed to import extension badext2: No module named badext2
13 hg help [TOPIC]
13 hg help [TOPIC]
14
14
15 show help for a given topic or a help overview
15 show help for a given topic or a help overview
@@ -24,7 +24,7 b' give the server some time to start runni'
24 $ sleep 1
24 $ sleep 1
25
25
26 $ hg clone http://localhost:$HGPORT/foo copy2 2>&1
26 $ hg clone http://localhost:$HGPORT/foo copy2 2>&1
27 abort: HTTP Error 404: .*
27 abort: HTTP Error 404: .* (re)
28 [255]
28 [255]
29
29
30 $ kill $!
30 $ kill $!
@@ -37,7 +37,7 b' bookmark list'
37 rebase
37 rebase
38
38
39 $ hg rebase -s two -d one
39 $ hg rebase -s two -d one
40 saved backup bundle to .*
40 saved backup bundle to .* (re)
41
41
42 $ hg log
42 $ hg log
43 changeset: 3:9163974d1cb5
43 changeset: 3:9163974d1cb5
@@ -50,7 +50,7 b' bookmarks updated?'
50 strip to revision 1
50 strip to revision 1
51
51
52 $ hg strip 1
52 $ hg strip 1
53 saved backup bundle to .*
53 saved backup bundle to .* (re)
54
54
55 list bookmarks
55 list bookmarks
56
56
@@ -80,7 +80,7 b' Check that path aliases are expanded:'
80
80
81 $ hg clone -q -U --config 'paths.foobar=a#0' foobar f
81 $ hg clone -q -U --config 'paths.foobar=a#0' foobar f
82 $ hg -R f showconfig paths.default
82 $ hg -R f showconfig paths.default
83 .*/a#0
83 .*/a#0 (re)
84
84
85 Use --pull:
85 Use --pull:
86
86
@@ -53,7 +53,7 b''
53 [255]
53 [255]
54 $ rm .hg/hgrc
54 $ rm .hg/hgrc
55 $ hg commit -m commit-1 2>&1
55 $ hg commit -m commit-1 2>&1
56 No username found, using '[^']*' instead
56 No username found, using '[^']*' instead (re)
57
57
58 $ echo space > asdf
58 $ echo space > asdf
59 $ hg commit -u ' ' -m commit-1
59 $ hg commit -u ' ' -m commit-1
@@ -18,7 +18,7 b''
18 Push should push to 'default' when 'default-push' not set:
18 Push should push to 'default' when 'default-push' not set:
19
19
20 $ hg --cwd b push
20 $ hg --cwd b push
21 pushing to .*/a
21 pushing to .*/a (re)
22 searching for changes
22 searching for changes
23 adding changesets
23 adding changesets
24 adding manifests
24 adding manifests
@@ -29,7 +29,7 b" Push should push to 'default-push' when "
29
29
30 $ echo 'default-push = ../c' >> b/.hg/hgrc
30 $ echo 'default-push = ../c' >> b/.hg/hgrc
31 $ hg --cwd b push
31 $ hg --cwd b push
32 pushing to .*/c
32 pushing to .*/c (re)
33 searching for changes
33 searching for changes
34 adding changesets
34 adding changesets
35 adding manifests
35 adding manifests
@@ -240,12 +240,12 b' Testing --time:'
240
240
241 $ hg --cwd a --time id
241 $ hg --cwd a --time id
242 8580ff50825a tip
242 8580ff50825a tip
243 Time: real .*
243 Time: real .* (re)
244
244
245 Testing --version:
245 Testing --version:
246
246
247 $ hg --version -q
247 $ hg --version -q
248 Mercurial Distributed SCM .*
248 Mercurial Distributed SCM .* (re)
249
249
250 Testing -h/--help:
250 Testing -h/--help:
251
251
@@ -189,7 +189,7 b' Short help:'
189 Test short command list with verbose option
189 Test short command list with verbose option
190
190
191 $ hg -v help shortlist
191 $ hg -v help shortlist
192 Mercurial Distributed SCM \(version .*\)
192 Mercurial Distributed SCM \(version .*\) (re)
193
193
194 Copyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others
194 Copyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others
195 This is free software; see the source for copying conditions. There is NO
195 This is free software; see the source for copying conditions. There is NO
@@ -341,7 +341,7 b' Verbose help for add'
341 Test help option with version option
341 Test help option with version option
342
342
343 $ hg add -h --version
343 $ hg add -h --version
344 Mercurial Distributed SCM \(version .+?\)
344 Mercurial Distributed SCM \(version .+?\) (re)
345
345
346 Copyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others
346 Copyright (C) 2005-2010 Matt Mackall <mpm@selenic.com> and others
347 This is free software; see the source for copying conditions. There is NO
347 This is free software; see the source for copying conditions. There is NO
@@ -44,7 +44,7 b' Should display baz only:'
44
44
45 $ echo "*.o" > .hgignore
45 $ echo "*.o" > .hgignore
46 $ hg status
46 $ hg status
47 abort: .*/\.hgignore: invalid pattern \(relre\): \*\.o
47 abort: .*/\.hgignore: invalid pattern \(relre\): \*\.o (re)
48 [255]
48 [255]
49
49
50 $ echo ".*\.o" > .hgignore
50 $ echo ".*\.o" > .hgignore
@@ -88,7 +88,7 b' Check it does not ignore the current dir'
88
88
89 $ echo "syntax: invalid" > .hgignore
89 $ echo "syntax: invalid" > .hgignore
90 $ hg status
90 $ hg status
91 .*/\.hgignore: ignoring invalid syntax 'invalid'
91 .*/\.hgignore: ignoring invalid syntax 'invalid' (re)
92 A dir/b.o
92 A dir/b.o
93 ? .hgignore
93 ? .hgignore
94 ? a.c
94 ? a.c
@@ -1,6 +1,6 b''
1 $ echo "invalid" > $HGRCPATH
1 $ echo "invalid" > $HGRCPATH
2 $ hg version
2 $ hg version
3 hg: parse error at .*/\.hgrc:1: invalid
3 hg: parse error at .*/\.hgrc:1: invalid (re)
4 [255]
4 [255]
5 $ echo "" > $HGRCPATH
5 $ echo "" > $HGRCPATH
6
6
@@ -14,12 +14,12 b' issue1199: escaping'
14 $ cd foobar
14 $ cd foobar
15 $ cat .hg/hgrc
15 $ cat .hg/hgrc
16 [paths]
16 [paths]
17 default = .*/foo%bar
17 default = .*/foo%bar (re)
18 $ hg paths
18 $ hg paths
19 default = .*/foo%bar
19 default = .*/foo%bar (re)
20 $ hg showconfig
20 $ hg showconfig
21 bundle\.mainreporoot=.*/foobar
21 bundle\.mainreporoot=.*/foobar (re)
22 paths\.default=.*/foo%bar
22 paths\.default=.*/foo%bar (re)
23 $ cd ..
23 $ cd ..
24
24
25 issue1829: wrong indentation
25 issue1829: wrong indentation
@@ -27,7 +27,7 b' issue1829: wrong indentation'
27 $ echo '[foo]' > $HGRCPATH
27 $ echo '[foo]' > $HGRCPATH
28 $ echo ' x = y' >> $HGRCPATH
28 $ echo ' x = y' >> $HGRCPATH
29 $ hg version
29 $ hg version
30 hg: parse error at .*/\.hgrc:2: x = y
30 hg: parse error at .*/\.hgrc:2: x = y (re)
31 [255]
31 [255]
32
32
33 $ python -c "print '[foo]\nbar = a\n b\n c \n de\n fg \nbaz = bif cb \n'" \
33 $ python -c "print '[foo]\nbar = a\n b\n c \n de\n fg \nbaz = bif cb \n'" \
@@ -40,7 +40,7 b' issue1829: wrong indentation'
40 $ export FAKEPATH
40 $ export FAKEPATH
41 $ echo '%include $FAKEPATH/no-such-file' > $HGRCPATH
41 $ echo '%include $FAKEPATH/no-such-file' > $HGRCPATH
42 $ hg version
42 $ hg version
43 hg: parse error at .*/\.hgrc:1: cannot include /path/to/nowhere/no-such-file \(No such file or directory\)
43 hg: parse error at .*/\.hgrc:1: cannot include /path/to/nowhere/no-such-file \(No such file or directory\) (re)
44 [255]
44 [255]
45 $ unset FAKEPATH
45 $ unset FAKEPATH
46
46
@@ -90,23 +90,23 b' HGPLAIN'
90 customized hgrc
90 customized hgrc
91
91
92 $ hg showconfig
92 $ hg showconfig
93 read config from: .*/\.hgrc
93 read config from: .*/\.hgrc (re)
94 .*/\.hgrc:13: alias\.log=log -g
94 .*/\.hgrc:13: alias\.log=log -g (re)
95 .*/\.hgrc:11: defaults\.identify=-n
95 .*/\.hgrc:11: defaults\.identify=-n (re)
96 .*/\.hgrc:2: ui\.debug=true
96 .*/\.hgrc:2: ui\.debug=true (re)
97 .*/\.hgrc:3: ui\.fallbackencoding=ASCII
97 .*/\.hgrc:3: ui\.fallbackencoding=ASCII (re)
98 .*/\.hgrc:4: ui\.quiet=true
98 .*/\.hgrc:4: ui\.quiet=true (re)
99 .*/\.hgrc:5: ui\.slash=true
99 .*/\.hgrc:5: ui\.slash=true (re)
100 .*/\.hgrc:6: ui\.traceback=true
100 .*/\.hgrc:6: ui\.traceback=true (re)
101 .*/\.hgrc:7: ui\.verbose=true
101 .*/\.hgrc:7: ui\.verbose=true (re)
102 .*/\.hgrc:8: ui\.style=~/.hgstyle
102 .*/\.hgrc:8: ui\.style=~/.hgstyle (re)
103 .*/\.hgrc:9: ui\.logtemplate=\{node\}
103 .*/\.hgrc:9: ui\.logtemplate=\{node\} (re)
104
104
105 plain hgrc
105 plain hgrc
106
106
107 $ HGPLAIN=; export HGPLAIN
107 $ HGPLAIN=; export HGPLAIN
108 $ hg showconfig --config ui.traceback=True --debug
108 $ hg showconfig --config ui.traceback=True --debug
109 read config from: .*/\.hgrc
109 read config from: .*/\.hgrc (re)
110 none: ui.traceback=True
110 none: ui.traceback=True
111 none: ui.verbose=False
111 none: ui.verbose=False
112 none: ui.debug=True
112 none: ui.debug=True
@@ -415,12 +415,12 b' make sure --traceback works'
415 $ echo >> foo
415 $ echo >> foo
416 $ hg ci --debug -d '0 0' -m 'change foo'
416 $ hg ci --debug -d '0 0' -m 'change foo'
417 foo
417 foo
418 calling hook commit\.auto: <function autohook at .*>
418 calling hook commit\.auto: <function autohook at .*> (re)
419 Automatically installed hook
419 Automatically installed hook
420 committed changeset 1:52998019f6252a2b893452765fcb0a47351a5708
420 committed changeset 1:52998019f6252a2b893452765fcb0a47351a5708
421
421
422 $ hg showconfig hooks
422 $ hg showconfig hooks
423 hooks\.commit\.auto=<function autohook at .*>
423 hooks\.commit\.auto=<function autohook at .*> (re)
424
424
425 test python hook configured with python:[file]:[hook] syntax
425 test python hook configured with python:[file]:[hook] syntax
426
426
@@ -1,7 +1,7 b''
1 hg debuginstall
1 hg debuginstall
2 $ hg debuginstall
2 $ hg debuginstall
3 Checking encoding (ascii)...
3 Checking encoding (ascii)...
4 Checking installed modules \(.*/mercurial\)\.\.\.
4 Checking installed modules \(.*/mercurial\)\.\.\. (re)
5 Checking templates...
5 Checking templates...
6 Checking patch...
6 Checking patch...
7 Checking commit editor...
7 Checking commit editor...
@@ -11,7 +11,7 b' hg debuginstall'
11 hg debuginstall with no username
11 hg debuginstall with no username
12 $ HGUSER= hg debuginstall
12 $ HGUSER= hg debuginstall
13 Checking encoding (ascii)...
13 Checking encoding (ascii)...
14 Checking installed modules \(.*/mercurial\)\.\.\.
14 Checking installed modules \(.*/mercurial\)\.\.\. (re)
15 Checking templates...
15 Checking templates...
16 Checking patch...
16 Checking patch...
17 Checking commit editor...
17 Checking commit editor...
@@ -27,7 +27,7 b' Check that zero-size journals are correc'
27
27
28 $ hg -R foo unbundle repo.hg
28 $ hg -R foo unbundle repo.hg
29 adding changesets
29 adding changesets
30 abort: Permission denied: .*
30 abort: Permission denied: .* (re)
31 [255]
31 [255]
32
32
33 $ if test -f foo/.hg/store/journal; then echo 'journal exists :-('; fi
33 $ if test -f foo/.hg/store/journal; then echo 'journal exists :-('; fi
@@ -27,13 +27,13 b' as it would succeed without uisetup othe'
27 Revision = {node|short}
27 Revision = {node|short}
28 Source = {root}/{file},v
28 Source = {root}/{file},v
29 $Author: test $
29 $Author: test $
30 \$Date: ..../../.. ..:..:.. \$
30 \$Date: ..../../.. ..:..:.. \$ (re)
31 \$Header: .*/demo\.txt,v ............ ..../../.. ..:..:.. test \$
31 \$Header: .*/demo\.txt,v ............ ..../../.. ..:..:.. test \$ (re)
32 \$Id: demo\.txt,v ............ ..../../.. ..:..:.. test \$
32 \$Id: demo\.txt,v ............ ..../../.. ..:..:.. test \$ (re)
33 $RCSFile: demo.txt,v $
33 $RCSFile: demo.txt,v $
34 $RCSfile: demo.txt,v $
34 $RCSfile: demo.txt,v $
35 \$Revision: ............ \$
35 \$Revision: ............ \$ (re)
36 \$Source: .*/demo\.txt,v \$
36 \$Source: .*/demo.txt,v \$ (re)
37
37
38 $ hg --quiet kwdemo "Branch = {branches}"
38 $ hg --quiet kwdemo "Branch = {branches}"
39 [extensions]
39 [extensions]
@@ -71,7 +71,7 b' A bundle to test this was made with:'
71 hg bundle --base null ../test-keyword.hg
71 hg bundle --base null ../test-keyword.hg
72
72
73 $ hg pull -u "$TESTDIR"/test-keyword.hg
73 $ hg pull -u "$TESTDIR"/test-keyword.hg
74 pulling from .*test-keyword\.hg
74 pulling from .*test-keyword\.hg (re)
75 requesting all changes
75 requesting all changes
76 adding changesets
76 adding changesets
77 adding manifests
77 adding manifests
@@ -150,7 +150,7 b' hg cat files and symlink, no expansion'
150 do not process $Id:
150 do not process $Id:
151 xxx $
151 xxx $
152 ignore $Id$
152 ignore $Id$
153 a.*
153 a.* (re)
154
154
155 Test hook execution
155 Test hook execution
156
156
@@ -195,15 +195,15 b' Pull from bundle and trigger notify'
195 Content-Type: text/plain; charset="us-ascii"
195 Content-Type: text/plain; charset="us-ascii"
196 MIME-Version: 1.0
196 MIME-Version: 1.0
197 Content-Transfer-Encoding: 7bit
197 Content-Transfer-Encoding: 7bit
198 Date: .*
198 Date: .* (re)
199 Subject: changeset in .*
199 Subject: changeset in .* (re)
200 From: mercurial
200 From: mercurial
201 X-Hg-Notification: changeset a2392c293916
201 X-Hg-Notification: changeset a2392c293916
202 Message-Id: <hg\.a2392c293916.*>
202 Message-Id: <hg\.a2392c293916.*> (re)
203 To: Test
203 To: Test
204
204
205 changeset a2392c293916 in .*
205 changeset a2392c293916 in .* (re)
206 details: .*\?cmd=changeset;node=a2392c293916
206 details: .*\?cmd=changeset;node=a2392c293916 (re)
207 description:
207 description:
208 addsym
208 addsym
209
209
@@ -218,15 +218,15 b' Pull from bundle and trigger notify'
218 Content-Type: text/plain; charset="us-ascii"
218 Content-Type: text/plain; charset="us-ascii"
219 MIME-Version: 1.0
219 MIME-Version: 1.0
220 Content-Transfer-Encoding: 7bit
220 Content-Transfer-Encoding: 7bit
221 Date:.*
221 Date:.* (re)
222 Subject: changeset in.*
222 Subject: changeset in.* (re)
223 From: User Name <user@example.com>
223 From: User Name <user@example.com>
224 X-Hg-Notification: changeset ef63ca68695b
224 X-Hg-Notification: changeset ef63ca68695b
225 Message-Id: <hg\.ef63ca68695b.*>
225 Message-Id: <hg\.ef63ca68695b.*> (re)
226 To: Test
226 To: Test
227
227
228 changeset ef63ca68695b in .*
228 changeset ef63ca68695b in .* (re)
229 details: .*\?cmd=changeset;node=ef63ca68695b
229 details: .*\?cmd=changeset;node=ef63ca68695b (re)
230 description:
230 description:
231 absym
231 absym
232
232
@@ -335,7 +335,7 b' Diff remaining chunk'
335 $ hg diff
335 $ hg diff
336 diff -r d17e03c92c97 a
336 diff -r d17e03c92c97 a
337 --- a/a Wed Dec 31 23:59:51 1969 -0000
337 --- a/a Wed Dec 31 23:59:51 1969 -0000
338 \+\+\+ b/a .*
338 \+\+\+ b/a .* (re)
339 @@ -2,3 +2,4 @@
339 @@ -2,3 +2,4 @@
340 foo
340 foo
341 do not process $Id:
341 do not process $Id:
@@ -479,7 +479,7 b' Diff specific revision'
479 $ hg diff --rev 1
479 $ hg diff --rev 1
480 diff -r ef63ca68695b c
480 diff -r ef63ca68695b c
481 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
481 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
482 \+\+\+ b/c .*
482 \+\+\+ b/c .* (re)
483 @@ -0,0 +1,3 @@
483 @@ -0,0 +1,3 @@
484 +expand $Id$
484 +expand $Id$
485 +do not process $Id:
485 +do not process $Id:
@@ -527,7 +527,7 b' Cat and hg cat files before custom expan'
527 do not process $Id:
527 do not process $Id:
528 xxx $
528 xxx $
529 ignore $Id$
529 ignore $Id$
530 a.*
530 a.* (re)
531
531
532 Write custom keyword and prepare multiline commit message
532 Write custom keyword and prepare multiline commit message
533
533
@@ -577,7 +577,7 b' Stat, verify and show custom expansion ('
577 xxx $
577 xxx $
578 $Xinfo: User Name <user@example.com>: firstline $
578 $Xinfo: User Name <user@example.com>: firstline $
579 ignore $Id$
579 ignore $Id$
580 a.*
580 a.* (re)
581
581
582 annotate
582 annotate
583
583
@@ -648,7 +648,7 b' Clone to test incoming'
648 > default = ../Test
648 > default = ../Test
649 > EOF
649 > EOF
650 $ hg incoming
650 $ hg incoming
651 comparing with .*test-keyword\.t/Test
651 comparing with .*test-keyword\.t/Test (re)
652 searching for changes
652 searching for changes
653 changeset: 2:bb948857c743
653 changeset: 2:bb948857c743
654 tag: tip
654 tag: tip
@@ -718,7 +718,7 b' kwshrink a inside directory x'
718 kwexpand nonexistent
718 kwexpand nonexistent
719
719
720 $ hg kwexpand nonexistent
720 $ hg kwexpand nonexistent
721 nonexistent:.*
721 nonexistent:.* (re)
722
722
723
723
724 hg serve
724 hg serve
@@ -907,7 +907,7 b' Keywords shrunk in working directory, bu'
907 xxx $
907 xxx $
908 $Xinfo: User Name <user@example.com>: firstline $
908 $Xinfo: User Name <user@example.com>: firstline $
909 ignore $Id$
909 ignore $Id$
910 a.*
910 a.* (re)
911
911
912 Now disable keyword expansion
912 Now disable keyword expansion
913
913
@@ -924,4 +924,4 b' Now disable keyword expansion'
924 xxx $
924 xxx $
925 $Xinfo$
925 $Xinfo$
926 ignore $Id$
926 ignore $Id$
927 a.*
927 a.* (re)
@@ -32,7 +32,7 b' Create a patch removing a:'
32 Save the patch queue so we can merge it later:
32 Save the patch queue so we can merge it later:
33
33
34 $ hg qsave -c -e
34 $ hg qsave -c -e
35 copy .*/t/\.hg/patches to .*/t/\.hg/patches\.1
35 copy .*/t/\.hg/patches to .*/t/\.hg/patches\.1 (re)
36 $ checkundo
36 $ checkundo
37
37
38 Update b and commit in an "update" changeset:
38 Update b and commit in an "update" changeset:
@@ -52,7 +52,7 b' Update b and commit in an "update" chang'
52 b
52 b
53
53
54 $ hg qpush -a -m
54 $ hg qpush -a -m
55 merging with queue at: .*/t/\.hg/patches\.1
55 merging with queue at: .*/t/\.hg/patches\.1 (re)
56 applying rm_a
56 applying rm_a
57 now at: rm_a
57 now at: rm_a
58
58
@@ -91,14 +91,14 b' Classic MQ merge sequence *with an expli'
91 Create the reference queue:
91 Create the reference queue:
92
92
93 $ hg qsave -c -e -n refqueue
93 $ hg qsave -c -e -n refqueue
94 copy .*/t2/\.hg/patches to .*/t2/\.hg/refqueue
94 copy .*/t2/\.hg/patches to .*/t2/\.hg/refqueue (re)
95 $ hg up -C 1
95 $ hg up -C 1
96 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
96 1 files updated, 0 files merged, 1 files removed, 0 files unresolved
97
97
98 Merge:
98 Merge:
99
99
100 $ HGMERGE=internal:other hg qpush -a -m -n refqueue
100 $ HGMERGE=internal:other hg qpush -a -m -n refqueue
101 merging with queue at: .*/t2/\.hg/refqueue
101 merging with queue at: .*/t2/\.hg/refqueue (re)
102 applying patcha
102 applying patcha
103 patching file a
103 patching file a
104 Hunk #1 FAILED at 0
104 Hunk #1 FAILED at 0
@@ -138,10 +138,10 b' Check patcha2 is still a regular patch:'
138
138
139 $ cat .hg/patches/patcha2
139 $ cat .hg/patches/patcha2
140 # HG changeset patch
140 # HG changeset patch
141 # Parent ........................................
141 # Parent ........................................ (re)
142 # Date 0 0
142 # Date 0 0
143
143
144 diff -r ............ -r ............ a
144 diff -r ............ -r ............ a (re)
145 --- a/a
145 --- a/a
146 +++ b/a
146 +++ b/a
147 @@ -1,2 +1,3 @@
147 @@ -1,2 +1,3 @@
@@ -59,7 +59,7 b' Fold with local changes:'
59 [255]
59 [255]
60
60
61 $ hg diff -c .
61 $ hg diff -c .
62 diff -r 07f494440405 -r ............ a
62 diff -r 07f494440405 -r ............ a (re)
63 --- a/a
63 --- a/a
64 +++ b/a
64 +++ b/a
65 @@ -1,1 +1,3 @@
65 @@ -1,1 +1,3 @@
@@ -85,7 +85,7 b' Fold git patch into a regular patch, exp'
85
85
86 $ cat .hg/patches/regular
86 $ cat .hg/patches/regular
87 # HG changeset patch
87 # HG changeset patch
88 # Parent ........................................
88 # Parent ........................................ (re)
89
89
90 diff --git a/a b/a
90 diff --git a/a b/a
91 --- a/a
91 --- a/a
@@ -127,7 +127,7 b' Fold regular patch into a git patch, exp'
127
127
128 $ cat .hg/patches/git
128 $ cat .hg/patches/git
129 # HG changeset patch
129 # HG changeset patch
130 # Parent ........................................
130 # Parent ........................................ (re)
131
131
132 diff --git a/a b/aa
132 diff --git a/a b/aa
133 copy from a
133 copy from a
@@ -255,7 +255,7 b' qrefresh --short tests:'
255 diff shows what is not in patch:
255 diff shows what is not in patch:
256
256
257 $ hg diff
257 $ hg diff
258 diff -r ............ orphanchild
258 diff -r ............ orphanchild (re)
259 --- /dev/null
259 --- /dev/null
260 +++ b/orphanchild
260 +++ b/orphanchild
261 @@ -0,0 +1,1 @@
261 @@ -0,0 +1,1 @@
@@ -39,7 +39,7 b' qpop/qrefresh on the wrong revision'
39 abort: popping would remove a revision not managed by this patch queue
39 abort: popping would remove a revision not managed by this patch queue
40 [255]
40 [255]
41 $ hg qpop -n patches
41 $ hg qpop -n patches
42 using patch queue: .*/repo/\.hg/patches
42 using patch queue: .*/repo/\.hg/patches (re)
43 abort: popping would remove a revision not managed by this patch queue
43 abort: popping would remove a revision not managed by this patch queue
44 [255]
44 [255]
45 $ hg qrefresh
45 $ hg qrefresh
@@ -77,7 +77,7 b''
77 summary: e
77 summary: e
78
78
79 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
79 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
80 saved backup bundle to .*
80 saved backup bundle to .* (re)
81 % after update 4, strip 4
81 % after update 4, strip 4
82 changeset: 3:65bd5f99a4a3
82 changeset: 3:65bd5f99a4a3
83 tag: tip
83 tag: tip
@@ -96,7 +96,7 b''
96 summary: e
96 summary: e
97
97
98 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
98 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
99 saved backup bundle to .*
99 saved backup bundle to .* (re)
100 % after update 4, strip 3
100 % after update 4, strip 3
101 changeset: 1:ef3a871183d7
101 changeset: 1:ef3a871183d7
102 user: test
102 user: test
@@ -111,7 +111,7 b''
111 date: Thu Jan 01 00:00:00 1970 +0000
111 date: Thu Jan 01 00:00:00 1970 +0000
112 summary: b
112 summary: b
113
113
114 saved backup bundle to .*
114 saved backup bundle to .* (re)
115 % after update 1, strip 4
115 % after update 1, strip 4
116 changeset: 1:ef3a871183d7
116 changeset: 1:ef3a871183d7
117 user: test
117 user: test
@@ -127,7 +127,7 b''
127 date: Thu Jan 01 00:00:00 1970 +0000
127 date: Thu Jan 01 00:00:00 1970 +0000
128 summary: e
128 summary: e
129
129
130 saved backup bundle to .*
130 saved backup bundle to .* (re)
131 % after update 4, strip 2
131 % after update 4, strip 2
132 changeset: 3:443431ffac4f
132 changeset: 3:443431ffac4f
133 tag: tip
133 tag: tip
@@ -146,7 +146,7 b''
146 summary: c
146 summary: c
147
147
148 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
148 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
149 saved backup bundle to .*
149 saved backup bundle to .* (re)
150 % after update 4, strip 1
150 % after update 4, strip 1
151 changeset: 0:9ab35a2d17cb
151 changeset: 0:9ab35a2d17cb
152 tag: tip
152 tag: tip
@@ -157,7 +157,7 b''
157 $ teststrip null 4
157 $ teststrip null 4
158 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
158 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
159 % before update null, strip 4
159 % before update null, strip 4
160 saved backup bundle to .*
160 saved backup bundle to .* (re)
161 % after update null, strip 4
161 % after update null, strip 4
162
162
163 $ hg log
163 $ hg log
@@ -212,7 +212,7 b' before strip of merge parent'
212
212
213 $ hg strip 4
213 $ hg strip 4
214 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
214 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
215 saved backup bundle to .*
215 saved backup bundle to .* (re)
216
216
217 after strip of merge parent
217 after strip of merge parent
218
218
@@ -258,7 +258,7 b' after strip of merge parent'
258 2 is parent of 3, only one strip should happen
258 2 is parent of 3, only one strip should happen
259
259
260 $ hg strip 2 3
260 $ hg strip 2 3
261 saved backup bundle to .*
261 saved backup bundle to .* (re)
262 $ hg glog
262 $ hg glog
263 @ changeset: 2:264128213d29
263 @ changeset: 2:264128213d29
264 | tag: tip
264 | tag: tip
@@ -310,8 +310,8 b' 2 different branches: 2 strips'
310
310
311 $ hg strip 2 4
311 $ hg strip 2 4
312 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
312 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
313 saved backup bundle to .*
313 saved backup bundle to .* (re)
314 saved backup bundle to .*
314 saved backup bundle to .* (re)
315 $ hg glog
315 $ hg glog
316 @ changeset: 2:65bd5f99a4a3
316 @ changeset: 2:65bd5f99a4a3
317 | tag: tip
317 | tag: tip
@@ -335,14 +335,14 b' 2 different branches and a common ancest'
335
335
336 $ hg strip 1 2 4
336 $ hg strip 1 2 4
337 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
337 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
338 saved backup bundle to .*
338 saved backup bundle to .* (re)
339 $ restore
339 $ restore
340
340
341
341
342 remove branchy history for qimport tests
342 remove branchy history for qimport tests
343
343
344 $ hg strip 3
344 $ hg strip 3
345 saved backup bundle to .*
345 saved backup bundle to .* (re)
346
346
347
347
348 strip of applied mq should cleanup status file
348 strip of applied mq should cleanup status file
@@ -364,7 +364,7 b' stripping revision in queue'
364
364
365 $ hg strip 3
365 $ hg strip 3
366 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
366 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
367 saved backup bundle to .*
367 saved backup bundle to .* (re)
368
368
369 applied patches after stripping rev in queue
369 applied patches after stripping rev in queue
370
370
@@ -375,7 +375,7 b' stripping ancestor of queue'
375
375
376 $ hg strip 1
376 $ hg strip 1
377 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
377 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
378 saved backup bundle to .*
378 saved backup bundle to .* (re)
379
379
380 applied patches after stripping ancestor of queue
380 applied patches after stripping ancestor of queue
381
381
@@ -135,7 +135,7 b' qinit -c should create both files if the'
135 guards
135 guards
136 $ cat .hg/patches/series
136 $ cat .hg/patches/series
137 $ hg qinit -c
137 $ hg qinit -c
138 abort: repository .* already exists!
138 abort: repository .* already exists! (re)
139 [255]
139 [255]
140 $ cd ..
140 $ cd ..
141
141
@@ -237,9 +237,9 b' qrefresh'
237 $ cat .hg/patches/test.patch
237 $ cat .hg/patches/test.patch
238 foo bar
238 foo bar
239
239
240 diff -r [a-f0-9]* a
240 diff -r [a-f0-9]* a (re)
241 --- a/a\t(?P<date>.*)
241 --- a/a\t(?P<date>.*) (re)
242 \+\+\+ b/a\t(?P<date2>.*)
242 \+\+\+ b/a\t(?P<date2>.*) (re)
243 @@ -1,1 +1,2 @@
243 @@ -1,1 +1,2 @@
244 a
244 a
245 +a
245 +a
@@ -290,7 +290,7 b' Dump the tag cache to ensure that it has'
290 .hg/tags.cache (pre qpush):
290 .hg/tags.cache (pre qpush):
291
291
292 $ cat .hg/tags.cache
292 $ cat .hg/tags.cache
293 1 [\da-f]{40}
293 1 [\da-f]{40} (re)
294
294
295 $ hg qpush
295 $ hg qpush
296 applying test.patch
296 applying test.patch
@@ -300,7 +300,7 b' Dump the tag cache to ensure that it has'
300 .hg/tags.cache (post qpush):
300 .hg/tags.cache (post qpush):
301
301
302 $ cat .hg/tags.cache
302 $ cat .hg/tags.cache
303 2 [\da-f]{40}
303 2 [\da-f]{40} (re)
304
304
305 $ checkundo qpush
305 $ checkundo qpush
306 $ cd ..
306 $ cd ..
@@ -737,7 +737,7 b' strip'
737 adding x
737 adding x
738 $ hg strip tip
738 $ hg strip tip
739 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
739 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
740 saved backup bundle to .*
740 saved backup bundle to .* (re)
741 $ hg unbundle .hg/strip-backup/*
741 $ hg unbundle .hg/strip-backup/*
742 adding changesets
742 adding changesets
743 adding manifests
743 adding manifests
@@ -760,7 +760,7 b' strip with local changes, should complai'
760
760
761 $ hg strip -f tip
761 $ hg strip -f tip
762 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
762 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
763 saved backup bundle to .*
763 saved backup bundle to .* (re)
764
764
765
765
766 cd b; hg qrefresh
766 cd b; hg qrefresh
@@ -782,14 +782,14 b' cd b; hg qrefresh'
782 foo
782 foo
783
783
784 diff -r cb9a9f314b8b a
784 diff -r cb9a9f314b8b a
785 --- a/a\t(?P<date>.*)
785 --- a/a\t(?P<date>.*) (re)
786 \+\+\+ b/a\t(?P<date>.*)
786 \+\+\+ b/a\t(?P<date>.*) (re)
787 @@ -1,1 +1,2 @@
787 @@ -1,1 +1,2 @@
788 a
788 a
789 +a
789 +a
790 diff -r cb9a9f314b8b b/f
790 diff -r cb9a9f314b8b b/f
791 --- /dev/null\t(?P<date>.*)
791 --- /dev/null\t(?P<date>.*) (re)
792 \+\+\+ b/b/f\t(?P<date>.*)
792 \+\+\+ b/b/f\t(?P<date>.*) (re)
793 @@ -0,0 +1,1 @@
793 @@ -0,0 +1,1 @@
794 +f
794 +f
795
795
@@ -800,8 +800,8 b' hg qrefresh .'
800 foo
800 foo
801
801
802 diff -r cb9a9f314b8b b/f
802 diff -r cb9a9f314b8b b/f
803 --- /dev/null\t(?P<date>.*)
803 --- /dev/null\t(?P<date>.*) (re)
804 \+\+\+ b/b/f\t(?P<date>.*)
804 \+\+\+ b/b/f\t(?P<date>.*) (re)
805 @@ -0,0 +1,1 @@
805 @@ -0,0 +1,1 @@
806 +f
806 +f
807 $ hg status
807 $ hg status
@@ -1118,7 +1118,7 b' strip again'
1118
1118
1119 $ hg strip 1
1119 $ hg strip 1
1120 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1120 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
1121 saved backup bundle to .*
1121 saved backup bundle to .* (re)
1122 $ checkundo strip
1122 $ checkundo strip
1123 $ hg log
1123 $ hg log
1124 changeset: 1:20cbbe65cff7
1124 changeset: 1:20cbbe65cff7
@@ -25,8 +25,8 b''
25 Content-Transfer-Encoding: 7bit
25 Content-Transfer-Encoding: 7bit
26 Subject: [PATCH] a
26 Subject: [PATCH] a
27 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
27 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
28 Message-Id: <8580ff50825a50c8f716\.60@.*
28 Message-Id: <8580ff50825a50c8f716\.60@.* (re)
29 User-Agent: Mercurial-patchbomb/.*
29 User-Agent: Mercurial-patchbomb/.* (re)
30 Date: Thu, 01 Jan 1970 00:01:00 +0000
30 Date: Thu, 01 Jan 1970 00:01:00 +0000
31 From: quux
31 From: quux
32 To: foo
32 To: foo
@@ -80,8 +80,8 b''
80 MIME-Version: 1.0
80 MIME-Version: 1.0
81 Content-Transfer-Encoding: 7bit
81 Content-Transfer-Encoding: 7bit
82 Subject: [PATCH 0 of 2] test
82 Subject: [PATCH 0 of 2] test
83 Message-Id: <patchbomb\.120@[^>]*>
83 Message-Id: <patchbomb\.120@[^>]*> (re)
84 User-Agent: Mercurial-patchbomb/.*
84 User-Agent: Mercurial-patchbomb/.* (re)
85 Date: Thu, 01 Jan 1970 00:02:00 +0000
85 Date: Thu, 01 Jan 1970 00:02:00 +0000
86 From: quux
86 From: quux
87 To: foo
87 To: foo
@@ -94,10 +94,10 b''
94 Content-Transfer-Encoding: 7bit
94 Content-Transfer-Encoding: 7bit
95 Subject: [PATCH 1 of 2] a
95 Subject: [PATCH 1 of 2] a
96 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
96 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
97 Message-Id: <8580ff50825a50c8f716\.121@[^>]*>
97 Message-Id: <8580ff50825a50c8f716\.121@[^>]*> (re)
98 In-Reply-To: <patchbomb\.120@[^>]*>
98 In-Reply-To: <patchbomb\.120@[^>]*> (re)
99 References: <patchbomb\.120@[^>]*>
99 References: <patchbomb\.120@[^>]*> (re)
100 User-Agent: Mercurial-patchbomb/.*
100 User-Agent: Mercurial-patchbomb/.* (re)
101 Date: Thu, 01 Jan 1970 00:02:01 +0000
101 Date: Thu, 01 Jan 1970 00:02:01 +0000
102 From: quux
102 From: quux
103 To: foo
103 To: foo
@@ -122,10 +122,10 b''
122 Content-Transfer-Encoding: 7bit
122 Content-Transfer-Encoding: 7bit
123 Subject: [PATCH 2 of 2] b
123 Subject: [PATCH 2 of 2] b
124 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
124 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
125 Message-Id: <97d72e5f12c7e84f8506\.122@[^>]*>
125 Message-Id: <97d72e5f12c7e84f8506\.122@[^>]*> (re)
126 In-Reply-To: <patchbomb\.120@[^>]*>
126 In-Reply-To: <patchbomb\.120@[^>]*> (re)
127 References: <patchbomb\.120@[^>]*>
127 References: <patchbomb\.120@[^>]*> (re)
128 User-Agent: Mercurial-patchbomb/.*
128 User-Agent: Mercurial-patchbomb/.* (re)
129 Date: Thu, 01 Jan 1970 00:02:02 +0000
129 Date: Thu, 01 Jan 1970 00:02:02 +0000
130 From: quux
130 From: quux
131 To: foo
131 To: foo
@@ -241,8 +241,8 b' mime encoded mbox (base64):'
241 Content-Transfer-Encoding: base64
241 Content-Transfer-Encoding: base64
242 Subject: [PATCH] charset=utf-8; content-transfer-encoding: base64
242 Subject: [PATCH] charset=utf-8; content-transfer-encoding: base64
243 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
243 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
244 Message-Id: <c3c9e37db9f4fe4882cd\.240@.*
244 Message-Id: <c3c9e37db9f4fe4882cd\.240@.* (re)
245 User-Agent: Mercurial-patchbomb/.*
245 User-Agent: Mercurial-patchbomb/.* (re)
246 Date: Thu, 01 Jan 1970 00:04:00 +0000
246 Date: Thu, 01 Jan 1970 00:04:00 +0000
247 From: quux
247 From: quux
248 To: foo
248 To: foo
@@ -1810,8 +1810,8 b' test multi-byte domain parsing:'
1810 Content-Transfer-Encoding: 7bit
1810 Content-Transfer-Encoding: 7bit
1811 Subject: [PATCH] test
1811 Subject: [PATCH] test
1812 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1812 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1813 Message-Id: <8580ff50825a50c8f716\.315532860@.*
1813 Message-Id: <8580ff50825a50c8f716\.315532860@.* (re)
1814 User-Agent: Mercurial-patchbomb/.*
1814 User-Agent: Mercurial-patchbomb/.* (re)
1815 Date: Tue, 01 Jan 1980 00:01:00 +0000
1815 Date: Tue, 01 Jan 1980 00:01:00 +0000
1816 From: quux
1816 From: quux
1817 To: bar@xn--nicode-2ya.com
1817 To: bar@xn--nicode-2ya.com
@@ -1857,8 +1857,8 b' test outgoing:'
1857 MIME-Version: 1.0
1857 MIME-Version: 1.0
1858 Content-Transfer-Encoding: 7bit
1858 Content-Transfer-Encoding: 7bit
1859 Subject: [PATCH 0 of 8] test
1859 Subject: [PATCH 0 of 8] test
1860 Message-Id: <patchbomb\.315532860@.*
1860 Message-Id: <patchbomb\.315532860@.* (re)
1861 User-Agent: Mercurial-patchbomb/.*
1861 User-Agent: Mercurial-patchbomb/.* (re)
1862 Date: Tue, 01 Jan 1980 00:01:00 +0000
1862 Date: Tue, 01 Jan 1980 00:01:00 +0000
1863 From: test
1863 From: test
1864 To: foo
1864 To: foo
@@ -1870,10 +1870,10 b' test outgoing:'
1870 Content-Transfer-Encoding: 7bit
1870 Content-Transfer-Encoding: 7bit
1871 Subject: [PATCH 1 of 8] c
1871 Subject: [PATCH 1 of 8] c
1872 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1872 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1873 Message-Id: <ff2c9fa2018b15fa74b3\.315532861@.*
1873 Message-Id: <ff2c9fa2018b15fa74b3\.315532861@.* (re)
1874 In-Reply-To: <patchbomb\.315532860@[^>]*>
1874 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
1875 References: <patchbomb\.315532860@[^>]*>
1875 References: <patchbomb\.315532860@[^>]*> (re)
1876 User-Agent: Mercurial-patchbomb/.*
1876 User-Agent: Mercurial-patchbomb/.* (re)
1877 Date: Tue, 01 Jan 1980 00:01:01 +0000
1877 Date: Tue, 01 Jan 1980 00:01:01 +0000
1878 From: test
1878 From: test
1879 To: foo
1879 To: foo
@@ -1897,10 +1897,10 b' test outgoing:'
1897 Content-Transfer-Encoding: 8bit
1897 Content-Transfer-Encoding: 8bit
1898 Subject: [PATCH 2 of 8] charset=utf-8; content-transfer-encoding: base64
1898 Subject: [PATCH 2 of 8] charset=utf-8; content-transfer-encoding: base64
1899 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
1899 X-Mercurial-Node: c3c9e37db9f4fe4882cda39baf42fed6bad8b15a
1900 Message-Id: <c3c9e37db9f4fe4882cd\.315532862@.*
1900 Message-Id: <c3c9e37db9f4fe4882cd\.315532862@.* (re)
1901 In-Reply-To: <patchbomb\.315532860@[^>]*>
1901 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
1902 References: <patchbomb\.315532860@[^>]*>
1902 References: <patchbomb\.315532860@[^>]*> (re)
1903 User-Agent: Mercurial-patchbomb/.*
1903 User-Agent: Mercurial-patchbomb/.* (re)
1904 Date: Tue, 01 Jan 1980 00:01:02 +0000
1904 Date: Tue, 01 Jan 1980 00:01:02 +0000
1905 From: test
1905 From: test
1906 To: foo
1906 To: foo
@@ -1932,10 +1932,10 b' test outgoing:'
1932 Subject: [PATCH 3 of 8] charset=utf-8;
1932 Subject: [PATCH 3 of 8] charset=utf-8;
1933 content-transfer-encoding: quoted-printable
1933 content-transfer-encoding: quoted-printable
1934 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
1934 X-Mercurial-Node: c655633f8c87700bb38cc6a59a2753bdc5a6c376
1935 Message-Id: <c655633f8c87700bb38c\.315532863@.*
1935 Message-Id: <c655633f8c87700bb38c\.315532863@.* (re)
1936 In-Reply-To: <patchbomb\.315532860@[^>]*>
1936 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
1937 References: <patchbomb\.315532860@[^>]*>
1937 References: <patchbomb\.315532860@[^>]*> (re)
1938 User-Agent: Mercurial-patchbomb/.*
1938 User-Agent: Mercurial-patchbomb/.* (re)
1939 Date: Tue, 01 Jan 1980 00:01:03 +0000
1939 Date: Tue, 01 Jan 1980 00:01:03 +0000
1940 From: test
1940 From: test
1941 To: foo
1941 To: foo
@@ -1975,10 +1975,10 b' test outgoing:'
1975 Content-Transfer-Encoding: 8bit
1975 Content-Transfer-Encoding: 8bit
1976 Subject: [PATCH 4 of 8] charset=us-ascii; content-transfer-encoding: 8bit
1976 Subject: [PATCH 4 of 8] charset=us-ascii; content-transfer-encoding: 8bit
1977 X-Mercurial-Node: 22d0f96be12f5945fd67d101af58f7bc8263c835
1977 X-Mercurial-Node: 22d0f96be12f5945fd67d101af58f7bc8263c835
1978 Message-Id: <22d0f96be12f5945fd67\.315532864@.*
1978 Message-Id: <22d0f96be12f5945fd67\.315532864@.* (re)
1979 In-Reply-To: <patchbomb\.315532860@[^>]*>
1979 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
1980 References: <patchbomb\.315532860@[^>]*>
1980 References: <patchbomb\.315532860@[^>]*> (re)
1981 User-Agent: Mercurial-patchbomb/.*
1981 User-Agent: Mercurial-patchbomb/.* (re)
1982 Date: Tue, 01 Jan 1980 00:01:04 +0000
1982 Date: Tue, 01 Jan 1980 00:01:04 +0000
1983 From: test
1983 From: test
1984 To: foo
1984 To: foo
@@ -2002,10 +2002,10 b' test outgoing:'
2002 Content-Transfer-Encoding: 7bit
2002 Content-Transfer-Encoding: 7bit
2003 Subject: [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a
2003 Subject: [PATCH 5 of 8] Added tag zero, zero.foo for changeset 8580ff50825a
2004 X-Mercurial-Node: dd9c2b4b8a8a0934d5523c15f2c119b362360903
2004 X-Mercurial-Node: dd9c2b4b8a8a0934d5523c15f2c119b362360903
2005 Message-Id: <dd9c2b4b8a8a0934d552\.315532865@.*
2005 Message-Id: <dd9c2b4b8a8a0934d552\.315532865@.* (re)
2006 In-Reply-To: <patchbomb\.315532860@[^>]*>
2006 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
2007 References: <patchbomb\.315532860@[^>]*>
2007 References: <patchbomb\.315532860@[^>]*> (re)
2008 User-Agent: Mercurial-patchbomb/.*
2008 User-Agent: Mercurial-patchbomb/.* (re)
2009 Date: Tue, 01 Jan 1980 00:01:05 +0000
2009 Date: Tue, 01 Jan 1980 00:01:05 +0000
2010 From: test
2010 From: test
2011 To: foo
2011 To: foo
@@ -2030,10 +2030,10 b' test outgoing:'
2030 Content-Transfer-Encoding: 7bit
2030 Content-Transfer-Encoding: 7bit
2031 Subject: [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7
2031 Subject: [PATCH 6 of 8] Added tag one, one.patch for changeset 97d72e5f12c7
2032 X-Mercurial-Node: eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
2032 X-Mercurial-Node: eae5fcf795eee29d0e45ffc9f519a91cd79fc9ff
2033 Message-Id: <eae5fcf795eee29d0e45\.315532866@.*
2033 Message-Id: <eae5fcf795eee29d0e45\.315532866@.* (re)
2034 In-Reply-To: <patchbomb\.315532860@[^>]*>
2034 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
2035 References: <patchbomb\.315532860@[^>]*>
2035 References: <patchbomb\.315532860@[^>]*> (re)
2036 User-Agent: Mercurial-patchbomb/.*
2036 User-Agent: Mercurial-patchbomb/.* (re)
2037 Date: Tue, 01 Jan 1980 00:01:06 +0000
2037 Date: Tue, 01 Jan 1980 00:01:06 +0000
2038 From: test
2038 From: test
2039 To: foo
2039 To: foo
@@ -2060,10 +2060,10 b' test outgoing:'
2060 Content-Transfer-Encoding: 7bit
2060 Content-Transfer-Encoding: 7bit
2061 Subject: [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b
2061 Subject: [PATCH 7 of 8] Added tag two, two.diff for changeset ff2c9fa2018b
2062 X-Mercurial-Node: e317db6a6f288748d1f6cb064f3810fcba66b1b6
2062 X-Mercurial-Node: e317db6a6f288748d1f6cb064f3810fcba66b1b6
2063 Message-Id: <e317db6a6f288748d1f6\.315532867@.*
2063 Message-Id: <e317db6a6f288748d1f6\.315532867@.* (re)
2064 In-Reply-To: <patchbomb\.315532860@[^>]*>
2064 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
2065 References: <patchbomb\.315532860@[^>]*>
2065 References: <patchbomb\.315532860@[^>]*> (re)
2066 User-Agent: Mercurial-patchbomb/.*
2066 User-Agent: Mercurial-patchbomb/.* (re)
2067 Date: Tue, 01 Jan 1980 00:01:07 +0000
2067 Date: Tue, 01 Jan 1980 00:01:07 +0000
2068 From: test
2068 From: test
2069 To: foo
2069 To: foo
@@ -2091,10 +2091,10 b' test outgoing:'
2091 Content-Transfer-Encoding: 7bit
2091 Content-Transfer-Encoding: 7bit
2092 Subject: [PATCH 8 of 8] d
2092 Subject: [PATCH 8 of 8] d
2093 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2093 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2094 Message-Id: <2f9fa9b998c5fe3ac2bd\.315532868[^>]*>
2094 Message-Id: <2f9fa9b998c5fe3ac2bd\.315532868[^>]*> (re)
2095 In-Reply-To: <patchbomb\.315532860@[^>]*>
2095 In-Reply-To: <patchbomb\.315532860@[^>]*> (re)
2096 References: <patchbomb\.315532860@[^>]*>
2096 References: <patchbomb\.315532860@[^>]*> (re)
2097 User-Agent: Mercurial-patchbomb/.*
2097 User-Agent: Mercurial-patchbomb/.* (re)
2098 Date: Tue, 01 Jan 1980 00:01:08 +0000
2098 Date: Tue, 01 Jan 1980 00:01:08 +0000
2099 From: test
2099 From: test
2100 To: foo
2100 To: foo
@@ -2129,8 +2129,8 b' dest#branch URIs:'
2129 Content-Transfer-Encoding: 7bit
2129 Content-Transfer-Encoding: 7bit
2130 Subject: [PATCH] test
2130 Subject: [PATCH] test
2131 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2131 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2132 Message-Id: <2f9fa9b998c5fe3ac2bd\.315532860@.*
2132 Message-Id: <2f9fa9b998c5fe3ac2bd\.315532860@.* (re)
2133 User-Agent: Mercurial-patchbomb/.*
2133 User-Agent: Mercurial-patchbomb/.* (re)
2134 Date: Tue, 01 Jan 1980 00:01:00 +0000
2134 Date: Tue, 01 Jan 1980 00:01:00 +0000
2135 From: test
2135 From: test
2136 To: foo
2136 To: foo
@@ -6,11 +6,11 b''
6 $ echo '[paths]' >> .hg/hgrc
6 $ echo '[paths]' >> .hg/hgrc
7 $ echo 'dupe = ../b' >> .hg/hgrc
7 $ echo 'dupe = ../b' >> .hg/hgrc
8 $ hg in dupe
8 $ hg in dupe
9 comparing with .*/test-paths\.t/b
9 comparing with .*/test-paths\.t/b (re)
10 no changes found
10 no changes found
11 [1]
11 [1]
12 $ cd ..
12 $ cd ..
13 $ hg -R a in dupe
13 $ hg -R a in dupe
14 comparing with .*/test-paths\.t/b
14 comparing with .*/test-paths\.t/b (re)
15 no changes found
15 no changes found
16 [1]
16 [1]
@@ -20,7 +20,7 b''
20 checking manifests
20 checking manifests
21 crosschecking files in changesets and manifests
21 crosschecking files in changesets and manifests
22 checking files
22 checking files
23 abort: Permission denied: .*
23 abort: Permission denied: .* (re)
24 [255]
24 [255]
25
25
26 $ chmod +r .hg/store/data/a.i
26 $ chmod +r .hg/store/data/a.i
@@ -37,7 +37,7 b''
37 $ echo barber > a
37 $ echo barber > a
38 $ hg commit -m "2"
38 $ hg commit -m "2"
39 trouble committing a!
39 trouble committing a!
40 abort: Permission denied: .*
40 abort: Permission denied: .* (re)
41 [255]
41 [255]
42
42
43 $ chmod -w .
43 $ chmod -w .
@@ -40,7 +40,7 b' Expected to fail:'
40 Expected to fail:
40 Expected to fail:
41
41
42 $ hg push
42 $ hg push
43 pushing to .*
43 pushing to .* (re)
44 searching for changes
44 searching for changes
45 adding changesets
45 adding changesets
46 adding manifests
46 adding manifests
@@ -60,7 +60,7 b' clone and pull to break links'
60 relink
60 relink
61
61
62 $ hg relink --debug | fix_path
62 $ hg relink --debug | fix_path
63 relinking .*/\.hg/store
63 relinking .*/\.hg/store (re)
64 tip has 2 files, estimated total number of files: 3
64 tip has 2 files, estimated total number of files: 3
65 collecting: 00changelog.i 1/3 files (33.33%)
65 collecting: 00changelog.i 1/3 files (33.33%)
66 collecting: 00manifest.i 2/3 files (66.67%)
66 collecting: 00manifest.i 2/3 files (66.67%)
@@ -263,8 +263,8 b' overwrite existing files (d2/b)'
263 R d1/ba
263 R d1/ba
264 R d1/d11/a1
264 R d1/d11/a1
265 $ diff -u d1/b d2/b
265 $ diff -u d1/b d2/b
266 --- d1/b .*
266 --- d1/b .* (re)
267 \+\+\+ d2/b .*
267 \+\+\+ d2/b .* (re)
268 @@ -1 +1 @@
268 @@ -1 +1 @@
269 -d1/b
269 -d1/b
270 +d2/b
270 +d2/b
@@ -27,7 +27,7 b" Preparing the 'main' repo which depends "
27 $ echo "sub1 = ../sub1" > main/.hgsub
27 $ echo "sub1 = ../sub1" > main/.hgsub
28 $ hg clone sub1 main/sub1
28 $ hg clone sub1 main/sub1
29 updating to branch default
29 updating to branch default
30 pulling subrepo sub2 from .*/sub2
30 pulling subrepo sub2 from .*/sub2 (re)
31 requesting all changes
31 requesting all changes
32 adding changesets
32 adding changesets
33 adding manifests
33 adding manifests
@@ -55,13 +55,13 b' Clone main'
55
55
56 $ hg clone main cloned
56 $ hg clone main cloned
57 updating to branch default
57 updating to branch default
58 pulling subrepo sub1 from .*/sub1
58 pulling subrepo sub1 from .*/sub1 (re)
59 requesting all changes
59 requesting all changes
60 adding changesets
60 adding changesets
61 adding manifests
61 adding manifests
62 adding file changes
62 adding file changes
63 added 1 changesets with 3 changes to 3 files
63 added 1 changesets with 3 changes to 3 files
64 pulling subrepo sub1/sub2 from .*/sub2
64 pulling subrepo sub1/sub2 from .*/sub2 (re)
65 requesting all changes
65 requesting all changes
66 adding changesets
66 adding changesets
67 adding manifests
67 adding manifests
@@ -28,5 +28,5 b' test bad subpaths pattern'
28 > .* = \1
28 > .* = \1
29 > EOF
29 > EOF
30 $ hg debugsub
30 $ hg debugsub
31 abort: bad subrepository pattern in .*/test-subrepo-paths\.t/outer/\.hg/hgrc:2: invalid group reference
31 abort: bad subrepository pattern in .*/test-subrepo-paths\.t/outer/\.hg/hgrc:2: invalid group reference (re)
32 [255]
32 [255]
@@ -252,13 +252,13 b' Clone and test outgoing:'
252 $ cd ..
252 $ cd ..
253 $ hg clone repo repo2
253 $ hg clone repo repo2
254 updating to branch default
254 updating to branch default
255 pulling subrepo foo from .*/test-subrepo-recursion\.t/repo/foo
255 pulling subrepo foo from .*/test-subrepo-recursion\.t/repo/foo (re)
256 requesting all changes
256 requesting all changes
257 adding changesets
257 adding changesets
258 adding manifests
258 adding manifests
259 adding file changes
259 adding file changes
260 added 4 changesets with 7 changes to 3 files
260 added 4 changesets with 7 changes to 3 files
261 pulling subrepo foo/bar from .*/test-subrepo-recursion\.t/repo/foo/bar
261 pulling subrepo foo/bar from .*/test-subrepo-recursion\.t/repo/foo/bar (re)
262 requesting all changes
262 requesting all changes
263 adding changesets
263 adding changesets
264 adding manifests
264 adding manifests
@@ -267,10 +267,10 b' Clone and test outgoing:'
267 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
267 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
268 $ cd repo2
268 $ cd repo2
269 $ hg outgoing -S
269 $ hg outgoing -S
270 comparing with .*/test-subrepo-recursion\.t/repo
270 comparing with .*/test-subrepo-recursion\.t/repo (re)
271 searching for changes
271 searching for changes
272 no changes found
272 no changes found
273 comparing with .*/test-subrepo-recursion\.t/repo/foo
273 comparing with .*/test-subrepo-recursion\.t/repo/foo (re)
274 searching for changes
274 searching for changes
275 no changes found
275 no changes found
276 [1]
276 [1]
@@ -290,7 +290,7 b' Make nested change:'
290 $ hg commit -m 3-4-2
290 $ hg commit -m 3-4-2
291 committing subrepository foo
291 committing subrepository foo
292 $ hg outgoing -S
292 $ hg outgoing -S
293 comparing with .*/test-subrepo-recursion\.t/repo
293 comparing with .*/test-subrepo-recursion\.t/repo (re)
294 searching for changes
294 searching for changes
295 changeset: 3:2655b8ecc4ee
295 changeset: 3:2655b8ecc4ee
296 tag: tip
296 tag: tip
@@ -298,7 +298,7 b' Make nested change:'
298 date: Thu Jan 01 00:00:00 1970 +0000
298 date: Thu Jan 01 00:00:00 1970 +0000
299 summary: 3-4-2
299 summary: 3-4-2
300
300
301 comparing with .*/test-subrepo-recursion\.t/repo/foo
301 comparing with .*/test-subrepo-recursion\.t/repo/foo (re)
302 searching for changes
302 searching for changes
303 changeset: 4:e96193d6cb36
303 changeset: 4:e96193d6cb36
304 tag: tip
304 tag: tip
@@ -316,7 +316,7 b' Switch to original repo and setup defaul'
316 Test incoming:
316 Test incoming:
317
317
318 $ hg incoming -S
318 $ hg incoming -S
319 comparing with .*/test-subrepo-recursion\.t/repo2
319 comparing with .*/test-subrepo-recursion\.t/repo2 (re)
320 searching for changes
320 searching for changes
321 changeset: 3:2655b8ecc4ee
321 changeset: 3:2655b8ecc4ee
322 tag: tip
322 tag: tip
@@ -324,7 +324,7 b' Test incoming:'
324 date: Thu Jan 01 00:00:00 1970 +0000
324 date: Thu Jan 01 00:00:00 1970 +0000
325 summary: 3-4-2
325 summary: 3-4-2
326
326
327 comparing with .*/test-subrepo-recursion\.t/repo2/foo
327 comparing with .*/test-subrepo-recursion\.t/repo2/foo (re)
328 searching for changes
328 searching for changes
329 changeset: 4:e96193d6cb36
329 changeset: 4:e96193d6cb36
330 tag: tip
330 tag: tip
@@ -44,7 +44,7 b' Clone main from hgweb'
44 adding file changes
44 adding file changes
45 added 1 changesets with 3 changes to 3 files
45 added 1 changesets with 3 changes to 3 files
46 updating to branch default
46 updating to branch default
47 pulling subrepo sub from http://localhost:[0-9]+/sub
47 pulling subrepo sub from http://localhost:[0-9]+/sub (re)
48 requesting all changes
48 requesting all changes
49 adding changesets
49 adding changesets
50 adding manifests
50 adding manifests
@@ -86,7 +86,7 b' change file in svn and hg, commit'
86 Transmitting file data .
86 Transmitting file data .
87 Committed revision 3.
87 Committed revision 3.
88
88
89 Fetching external item into '.*/s/externals'
89 Fetching external item into '.*/s/externals' (re)
90 External at revision 1.
90 External at revision 1.
91
91
92 At revision 3.
92 At revision 3.
@@ -236,19 +236,19 b' clone'
236 $ cd ..
236 $ cd ..
237 $ hg clone t tc
237 $ hg clone t tc
238 updating to branch default
238 updating to branch default
239 pulling subrepo s from .*/sub/t/s
239 pulling subrepo s from .*/sub/t/s (re)
240 requesting all changes
240 requesting all changes
241 adding changesets
241 adding changesets
242 adding manifests
242 adding manifests
243 adding file changes
243 adding file changes
244 added 4 changesets with 5 changes to 3 files
244 added 4 changesets with 5 changes to 3 files
245 pulling subrepo s/ss from .*/sub/t/s/ss
245 pulling subrepo s/ss from .*/sub/t/s/ss (re)
246 requesting all changes
246 requesting all changes
247 adding changesets
247 adding changesets
248 adding manifests
248 adding manifests
249 adding file changes
249 adding file changes
250 added 1 changesets with 1 changes to 1 files
250 added 1 changesets with 1 changes to 1 files
251 pulling subrepo t from .*/sub/t/t
251 pulling subrepo t from .*/sub/t/t (re)
252 requesting all changes
252 requesting all changes
253 adding changesets
253 adding changesets
254 adding manifests
254 adding manifests
@@ -270,14 +270,14 b' push'
270 $ hg ci -m11
270 $ hg ci -m11
271 committing subrepository t
271 committing subrepository t
272 $ hg push
272 $ hg push
273 pushing .*sub/t
273 pushing .*sub/t (re)
274 pushing .*sub/t/s/ss
274 pushing .*sub/t/s/ss (re)
275 searching for changes
275 searching for changes
276 no changes found
276 no changes found
277 pushing .*sub/t/s
277 pushing .*sub/t/s (re)
278 searching for changes
278 searching for changes
279 no changes found
279 no changes found
280 pushing .*sub/t/t
280 pushing .*sub/t/t (re)
281 searching for changes
281 searching for changes
282 adding changesets
282 adding changesets
283 adding manifests
283 adding manifests
@@ -295,27 +295,27 b' push -f'
295 $ hg ci -m12
295 $ hg ci -m12
296 committing subrepository s
296 committing subrepository s
297 $ hg push
297 $ hg push
298 pushing .*sub/t
298 pushing .*sub/t (re)
299 pushing .*sub/t/s/ss
299 pushing .*sub/t/s/ss (re)
300 searching for changes
300 searching for changes
301 no changes found
301 no changes found
302 pushing .*sub/t/s
302 pushing .*sub/t/s (re)
303 searching for changes
303 searching for changes
304 abort: push creates new remote heads on branch 'default'!
304 abort: push creates new remote heads on branch 'default'!
305 (did you forget to merge? use push -f to force)
305 (did you forget to merge? use push -f to force)
306 [255]
306 [255]
307 $ hg push -f
307 $ hg push -f
308 pushing .*sub/t
308 pushing .*sub/t (re)
309 pushing .*sub/t/s/ss
309 pushing .*sub/t/s/ss (re)
310 searching for changes
310 searching for changes
311 no changes found
311 no changes found
312 pushing .*sub/t/s
312 pushing .*sub/t/s (re)
313 searching for changes
313 searching for changes
314 adding changesets
314 adding changesets
315 adding manifests
315 adding manifests
316 adding file changes
316 adding file changes
317 added 1 changesets with 1 changes to 1 files (+1 heads)
317 added 1 changesets with 1 changes to 1 files (+1 heads)
318 pushing .*sub/t/t
318 pushing .*sub/t/t (re)
319 searching for changes
319 searching for changes
320 no changes found
320 no changes found
321 searching for changes
321 searching for changes
@@ -337,7 +337,7 b' pull'
337
337
338 $ cd ../tc
338 $ cd ../tc
339 $ hg pull
339 $ hg pull
340 pulling .*sub/t
340 pulling .*sub/t (re)
341 searching for changes
341 searching for changes
342 adding changesets
342 adding changesets
343 adding manifests
343 adding manifests
@@ -348,7 +348,7 b' pull'
348 should pull t
348 should pull t
349
349
350 $ hg up
350 $ hg up
351 pulling subrepo t from .*/sub/t/t
351 pulling subrepo t from .*/sub/t/t (re)
352 searching for changes
352 searching for changes
353 adding changesets
353 adding changesets
354 adding manifests
354 adding manifests
@@ -541,9 +541,9 b' test repository cloning'
541 $ cat mercurial2/main/nested_absolute/.hg/hgrc \
541 $ cat mercurial2/main/nested_absolute/.hg/hgrc \
542 > mercurial2/main/nested_relative/.hg/hgrc
542 > mercurial2/main/nested_relative/.hg/hgrc
543 [paths]
543 [paths]
544 default = .*/test-subrepo\.t/sub/mercurial/nested_absolute
544 default = .*/test-subrepo\.t/sub/mercurial/nested_absolute (re)
545 [paths]
545 [paths]
546 default = .*/test-subrepo\.t/sub/mercurial/nested_relative
546 default = .*/test-subrepo\.t/sub/mercurial/nested_relative (re)
547 $ rm -rf mercurial mercurial2
547 $ rm -rf mercurial mercurial2
548
548
549 issue 1977
549 issue 1977
@@ -559,7 +559,7 b' issue 1977'
559 committing subrepository s
559 committing subrepository s
560 $ hg clone repo repo2
560 $ hg clone repo repo2
561 updating to branch default
561 updating to branch default
562 pulling subrepo s from .*/sub/repo/s
562 pulling subrepo s from .*/sub/repo/s (re)
563 requesting all changes
563 requesting all changes
564 adding changesets
564 adding changesets
565 adding manifests
565 adding manifests
@@ -299,7 +299,7 b" Don't allow moving tag without -f:"
299 Strip 1: expose an old head:
299 Strip 1: expose an old head:
300
300
301 $ hg --config extensions.mq= strip 5
301 $ hg --config extensions.mq= strip 5
302 saved backup bundle to .*
302 saved backup bundle to .* (re)
303 $ hg tags # partly stale cache
303 $ hg tags # partly stale cache
304 tip 5:735c3ca72986
304 tip 5:735c3ca72986
305 bar 1:78391a272241
305 bar 1:78391a272241
@@ -310,7 +310,7 b' Strip 1: expose an old head:'
310 Strip 2: destroy whole branch, no old head exposed
310 Strip 2: destroy whole branch, no old head exposed
311
311
312 $ hg --config extensions.mq= strip 4
312 $ hg --config extensions.mq= strip 4
313 saved backup bundle to .*
313 saved backup bundle to .* (re)
314 $ hg tags # partly stale
314 $ hg tags # partly stale
315 tip 4:735c3ca72986
315 tip 4:735c3ca72986
316 bar 0:bbd179dfa0a7
316 bar 0:bbd179dfa0a7
@@ -285,16 +285,16 b' test filter'
285 > EOF
285 > EOF
286 $ chmod +x test-filter
286 $ chmod +x test-filter
287 $ hg transplant -s ../t -b tip -a --filter ./test-filter
287 $ hg transplant -s ../t -b tip -a --filter ./test-filter
288 filtering .*
288 filtering .* (re)
289 applying 17ab29e464c6
289 applying 17ab29e464c6
290 17ab29e464c6 transplanted to e9ffc54ea104
290 17ab29e464c6 transplanted to e9ffc54ea104
291 filtering .*
291 filtering .* (re)
292 applying 37a1297eb21b
292 applying 37a1297eb21b
293 37a1297eb21b transplanted to 348b36d0b6a5
293 37a1297eb21b transplanted to 348b36d0b6a5
294 filtering .*
294 filtering .* (re)
295 applying 722f4667af76
295 applying 722f4667af76
296 722f4667af76 transplanted to 0aa6979afb95
296 722f4667af76 transplanted to 0aa6979afb95
297 filtering .*
297 filtering .* (re)
298 applying a53251cdf717
298 applying a53251cdf717
299 a53251cdf717 transplanted to 14f8512272b5
299 a53251cdf717 transplanted to 14f8512272b5
300 $ hg log --template '{rev} {parents} {desc}\n'
300 $ hg log --template '{rev} {parents} {desc}\n'
@@ -316,7 +316,7 b' test filter with failed patch'
316 adding test-filter
316 adding test-filter
317 created new head
317 created new head
318 $ hg transplant 1 --filter ./test-filter
318 $ hg transplant 1 --filter ./test-filter
319 filtering .*
319 filtering .* (re)
320 applying 348b36d0b6a5
320 applying 348b36d0b6a5
321 file b1 already exists
321 file b1 already exists
322 1 out of 1 hunks FAILED -- saving rejects to file b1.rej
322 1 out of 1 hunks FAILED -- saving rejects to file b1.rej
@@ -42,7 +42,7 b' Test basic functionality of url#rev synt'
42
42
43 $ cat clone/.hg/hgrc
43 $ cat clone/.hg/hgrc
44 [paths]
44 [paths]
45 default = .*/repo#foo
45 default = .*/repo#foo (re)
46
46
47 Changing original repo:
47 Changing original repo:
48
48
@@ -216,7 +216,7 b' Test absolute paths:'
216 f beans/pinto beans/pinto
216 f beans/pinto beans/pinto
217 f beans/turtle beans/turtle
217 f beans/turtle beans/turtle
218 $ hg debugwalk `pwd`/..
218 $ hg debugwalk `pwd`/..
219 abort: .*/\.\. not under root
219 abort: .*/\.\. not under root (re)
220 [255]
220 [255]
221
221
222 Test patterns:
222 Test patterns:
General Comments 0
You need to be logged in to leave comments. Login now