1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
Load commonly used test logic
$ . "$TESTDIR/testutil"
$ hg init test
$ cd test
$ cat >>afile <<EOF
> 0
> EOF
$ hg add afile
$ fn_hg_commit -m "0.0"
$ cat >>afile <<EOF
> 1
> EOF
$ fn_hg_commit -m "0.1"
$ cat >>afile <<EOF
> 2
> EOF
$ fn_hg_commit -m "0.2"
$ cat >>afile <<EOF
> 3
> EOF
$ fn_hg_commit -m "0.3"
$ hg update -C 0
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cat >>afile <<EOF
> 1
> EOF
$ fn_hg_commit -m "1.1"
$ cat >>afile <<EOF
> 2
> EOF
$ fn_hg_commit -m "1.2"
$ cat >fred <<EOF
> a line
> EOF
$ cat >>afile <<EOF
> 3
> EOF
$ hg add fred
$ fn_hg_commit -m "1.3"
$ hg mv afile adifferentfile
$ fn_hg_commit -m "1.3m"
$ hg update -C 3
1 files updated, 0 files merged, 2 files removed, 0 files unresolved
$ hg mv afile anotherfile
$ fn_hg_commit -m "0.3m"
$ cd ..
$ for i in 0 1 2 3 4 5 6 7 8; do
> mkdir test-"$i"
> hg --cwd test-"$i" init
> hg -R test push -r "$i" test-"$i"
> cd test-"$i"
> hg verify
> cd ..
> done
pushing to test-0
searching for changes
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 1 changesets with 1 changes to 1 files
pushing to test-1
searching for changes
adding changesets
adding manifests
adding file changes
added 2 changesets with 2 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 2 changesets with 2 changes to 1 files
pushing to test-2
searching for changes
adding changesets
adding manifests
adding file changes
added 3 changesets with 3 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 3 changesets with 3 changes to 1 files
pushing to test-3
searching for changes
adding changesets
adding manifests
adding file changes
added 4 changesets with 4 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 4 changesets with 4 changes to 1 files
pushing to test-4
searching for changes
adding changesets
adding manifests
adding file changes
added 2 changesets with 2 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 2 changesets with 2 changes to 1 files
pushing to test-5
searching for changes
adding changesets
adding manifests
adding file changes
added 3 changesets with 3 changes to 1 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 3 changesets with 3 changes to 1 files
pushing to test-6
searching for changes
adding changesets
adding manifests
adding file changes
added 4 changesets with 5 changes to 2 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 4 changesets with 5 changes to 2 files
pushing to test-7
searching for changes
adding changesets
adding manifests
adding file changes
added 5 changesets with 6 changes to 3 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 5 changesets with 6 changes to 3 files
pushing to test-8
searching for changes
adding changesets
adding manifests
adding file changes
added 5 changesets with 5 changes to 2 files
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 5 changesets with 5 changes to 2 files
$ cd test-8
$ hg pull ../test-7
pulling from ../test-7
searching for changes
adding changesets
adding manifests
adding file changes
added 4 changesets with 2 changes to 3 files (+1 heads)
new changesets c29287bce33f:e70c8671c3d4 (?)
(run 'hg heads' to see heads, 'hg merge' to merge)
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checking dirstate (?)
checked 9 changesets with 7 changes to 4 files
|