Show More
@@ -15,9 +15,9 b' Same issue, different code path' | |||||
15 |
|
15 | |||
16 | $ hg up -C |
|
16 | $ hg up -C | |
17 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
17 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
18 | $ touch doesnt-exist-in-1 |
|
18 | $ touch does-not-exist-in-1 | |
19 | $ hg add |
|
19 | $ hg add | |
20 | adding doesnt-exist-in-1 |
|
20 | adding does-not-exist-in-1 | |
21 | $ hg ci -m third |
|
21 | $ hg ci -m third | |
22 | $ rm doesnt-exist-in-1 |
|
22 | $ rm does-not-exist-in-1 | |
23 | $ hg diff -r 1 |
|
23 | $ hg diff -r 1 |
@@ -12,7 +12,7 b" fl = repo.file('foobar')" | |||||
12 |
|
12 | |||
13 | def addrev(text, renamed=False): |
|
13 | def addrev(text, renamed=False): | |
14 | if renamed: |
|
14 | if renamed: | |
15 | # data doesnt matter. Just make sure filelog.renamed() returns True |
|
15 | # data doesn't matter. Just make sure filelog.renamed() returns True | |
16 | meta = dict(copyrev=hex(nullid), copy='bar') |
|
16 | meta = dict(copyrev=hex(nullid), copy='bar') | |
17 | else: |
|
17 | else: | |
18 | meta = {} |
|
18 | meta = {} |
@@ -68,7 +68,7 b' Issue622: hg init && hg pull -u URL does' | |||||
68 |
|
68 | |||
69 | Test 'file:' uri handling: |
|
69 | Test 'file:' uri handling: | |
70 |
|
70 | |||
71 | $ hg pull -q file://../test-doesnt-exist |
|
71 | $ hg pull -q file://../test-does-not-exist | |
72 | abort: file:// URLs can only refer to localhost |
|
72 | abort: file:// URLs can only refer to localhost | |
73 | [255] |
|
73 | [255] | |
74 |
|
74 |
@@ -97,8 +97,8 b' trying to push' | |||||
97 | trying clone -r |
|
97 | trying clone -r | |
98 |
|
98 | |||
99 | $ cd .. |
|
99 | $ cd .. | |
100 | $ hg clone -r donotexist static-http://localhost:$HGPORT/remote local0 |
|
100 | $ hg clone -r doesnotexist static-http://localhost:$HGPORT/remote local0 | |
101 | abort: unknown revision 'donotexist'! |
|
101 | abort: unknown revision 'doesnotexist'! | |
102 | [255] |
|
102 | [255] | |
103 | $ hg clone -r 0 static-http://localhost:$HGPORT/remote local0 |
|
103 | $ hg clone -r 0 static-http://localhost:$HGPORT/remote local0 | |
104 | adding changesets |
|
104 | adding changesets |
General Comments 0
You need to be logged in to leave comments.
Login now