Mercurial > hg
annotate tests/test-verify @ 7955:c3d4ff03ec72
rebase: keep original mq patch format (Issue1574)
Rebase now doesn't make assumptions about which format has been
used for a mq patch (git or normal).
Before finalizing a patch it keeps track of the original format,
by reading its header, and then restores the format when reimporting
it.
This way it also allows for having mixed styles.
Note: this version corrects a failure in the test
author | Stefano Tortarolo <stefano.tortarolo@gmail.com> |
---|---|
date | Thu, 26 Mar 2009 16:58:50 +0200 |
parents | 69aeaaaf6e07 |
children | baaa832fd253 |
rev | line source |
---|---|
6893 | 1 #!/bin/sh |
2 | |
3 echo % prepare repo | |
4 hg init | |
5 echo "some text" > FOO.txt | |
6 echo "another text" > bar.txt | |
7 echo "more text" > QUICK.txt | |
8 hg add | |
9 hg ci -d '0 0' -mtest1 | |
10 | |
11 echo | |
12 echo % verify | |
13 hg verify | |
14 | |
15 echo | |
16 echo % introduce some bugs in repo | |
17 cd .hg/store/data | |
18 mv _f_o_o.txt.i X_f_o_o.txt.i | |
19 mv bar.txt.i xbar.txt.i | |
20 rm _q_u_i_c_k.txt.i | |
21 | |
22 echo | |
23 echo % verify | |
24 hg verify | |
25 | |
6898
69aeaaaf6e07
store: simplify class hierarchy
Matt Mackall <mpm@selenic.com>
parents:
6893
diff
changeset
|
26 exit 0 |