Fossil SCM

fossil-scm / test / merge3.test
Source Blame History 653 lines
26ab4f7… drh 1 #
26ab4f7… drh 2 # Copyright (c) 2009 D. Richard Hipp
26ab4f7… drh 3 #
26ab4f7… drh 4 # This program is free software; you can redistribute it and/or
9d723c5… drh 5 # modify it under the terms of the Simplified BSD License (also
9d723c5… drh 6 # known as the "2-Clause License" or "FreeBSD License".)
26ab4f7… drh 7 #
26ab4f7… drh 8 # This program is distributed in the hope that it will be useful,
9d723c5… drh 9 # but without any warranty; without even the implied warranty of
9d723c5… drh 10 # merchantability or fitness for a particular purpose.
26ab4f7… drh 11 #
26ab4f7… drh 12 # Author contact information:
26ab4f7… drh 13 # [email protected]
26ab4f7… drh 14 # http://www.hwaci.com/drh/
26ab4f7… drh 15 #
26ab4f7… drh 16 ############################################################################
26ab4f7… drh 17 #
26ab4f7… drh 18 # Tests of the 3-way merge
26ab4f7… drh 19 #
26ab4f7… drh 20
fa59221… mistachkin 21 test_setup ""
fa59221… mistachkin 22
e5bcfd1… preben 23 proc merge-test {testid basis v1 v2 result {fossil_args ""}} {
26ab4f7… drh 24 write_file t1 [join [string trim $basis] \n]\n
26ab4f7… drh 25 write_file t2 [join [string trim $v1] \n]\n
26ab4f7… drh 26 write_file t3 [join [string trim $v2] \n]\n
e5bcfd1… preben 27 fossil 3-way-merge t1 t2 t3 t4 {*}$fossil_args
26ab4f7… drh 28 set x [read_file t4]
271a978… preben 29 regsub -all \
271a978… preben 30 {<<<<<<< BEGIN MERGE CONFLICT: local copy shown first <+ \(line \d+\)} \
271a978… preben 31 $x {MINE:} x
e5bcfd1… preben 32 regsub -all \
6aee052… florian 33 {####### SUGGESTED CONFLICT RESOLUTION follows #+} \
6aee052… florian 34 $x {BOT:} x
6aee052… florian 35 regsub -all \
271a978… preben 36 {\|\|\|\|\|\|\| COMMON ANCESTOR content follows \|+ \(line \d+\)} \
271a978… preben 37 $x {COM:} x
271a978… preben 38 regsub -all \
271a978… preben 39 {======= MERGED IN content follows =+ \(line \d+\)} \
271a978… preben 40 $x {YOURS:} x
271a978… preben 41 regsub -all \
271a978… preben 42 {>>>>>>> END MERGE CONFLICT >+} \
271a978… preben 43 $x {END} x
26ab4f7… drh 44 set x [split [string trim $x] \n]
26ab4f7… drh 45 set result [string trim $result]
26ab4f7… drh 46 if {$x!=$result} {
f89d953… wolfgang 47 protOut " Expected \[$result\]"
f89d953… wolfgang 48 protOut " Got \[$x\]"
26ab4f7… drh 49 test merge3-$testid 0
26ab4f7… drh 50 } else {
26ab4f7… drh 51 test merge3-$testid 1
26ab4f7… drh 52 }
26ab4f7… drh 53 }
26ab4f7… drh 54
26ab4f7… drh 55 merge-test 1 {
26ab4f7… drh 56 1 2 3 4 5 6 7 8 9
26ab4f7… drh 57 } {
26ab4f7… drh 58 1 2 3b 4 5 6 7 8 9
26ab4f7… drh 59 } {
26ab4f7… drh 60 1 2 3 4 5c 6 7 8 9
26ab4f7… drh 61 } {
26ab4f7… drh 62 1 2 3b 4 5c 6 7 8 9
26ab4f7… drh 63 }
26ab4f7… drh 64
26ab4f7… drh 65 merge-test 2 {
26ab4f7… drh 66 1 2 3 4 5 6 7 8 9
26ab4f7… drh 67 } {
26ab4f7… drh 68 1 2 3b 4b 5 6 7 8 9
26ab4f7… drh 69 } {
26ab4f7… drh 70 1 2 3 4 5c 6 7 8 9
26ab4f7… drh 71 } {
26ab4f7… drh 72 1 2 3b 4b 5c 6 7 8 9
26ab4f7… drh 73 }
26ab4f7… drh 74 merge-test 3 {
26ab4f7… drh 75 1 2 3 4 5 6 7 8 9
26ab4f7… drh 76 } {
26ab4f7… drh 77 1 2 3b 4b 5b 6 7 8 9
26ab4f7… drh 78 } {
26ab4f7… drh 79 1 2 3 4 5c 6 7 8 9
26ab4f7… drh 80 } {
6aee052… florian 81 1 2 MINE: 3b 4b 5b BOT: 3b 4b 5c COM: 3 4 5 YOURS: 3 4 5c END 6 7 8 9
e5bcfd1… preben 82 } -expectError
26ab4f7… drh 83 merge-test 4 {
26ab4f7… drh 84 1 2 3 4 5 6 7 8 9
26ab4f7… drh 85 } {
26ab4f7… drh 86 1 2 3b 4b 5b 6b 7 8 9
26ab4f7… drh 87 } {
26ab4f7… drh 88 1 2 3 4 5c 6 7 8 9
26ab4f7… drh 89 } {
6aee052… florian 90 1 2 MINE: 3b 4b 5b 6b BOT: 3b 4b 5b 5c 6 COM: 3 4 5 6 YOURS: 3 4 5c 6 END 7 8 9
e5bcfd1… preben 91 } -expectError
26ab4f7… drh 92 merge-test 5 {
26ab4f7… drh 93 1 2 3 4 5 6 7 8 9
26ab4f7… drh 94 } {
26ab4f7… drh 95 1 2 3b 4b 5b 6b 7 8 9
26ab4f7… drh 96 } {
26ab4f7… drh 97 1 2 3 4 5c 6c 7c 8 9
26ab4f7… drh 98 } {
6aee052… florian 99 1 2 MINE: 3b 4b 5b 6b 7 BOT: 3b 4b 5b 5c 6c 7c COM: 3 4 5 6 7 YOURS: 3 4 5c 6c 7c END 8 9
e5bcfd1… preben 100 } -expectError
26ab4f7… drh 101 merge-test 6 {
26ab4f7… drh 102 1 2 3 4 5 6 7 8 9
26ab4f7… drh 103 } {
26ab4f7… drh 104 1 2 3b 4b 5b 6b 7 8b 9
26ab4f7… drh 105 } {
26ab4f7… drh 106 1 2 3 4 5c 6c 7c 8 9
26ab4f7… drh 107 } {
6aee052… florian 108 1 2 MINE: 3b 4b 5b 6b 7 BOT: 3b 4b 5b 5c 6c 7c COM: 3 4 5 6 7 YOURS: 3 4 5c 6c 7c END 8b 9
e5bcfd1… preben 109 } -expectError
26ab4f7… drh 110 merge-test 7 {
26ab4f7… drh 111 1 2 3 4 5 6 7 8 9
26ab4f7… drh 112 } {
26ab4f7… drh 113 1 2 3b 4b 5b 6b 7 8b 9
26ab4f7… drh 114 } {
26ab4f7… drh 115 1 2 3 4 5c 6c 7c 8c 9
26ab4f7… drh 116 } {
6aee052… florian 117 1 2 MINE: 3b 4b 5b 6b 7 8b BOT: 3b 4b 5b 5c 6c 7c 8c COM: 3 4 5 6 7 8 YOURS: 3 4 5c 6c 7c 8c END 9
e5bcfd1… preben 118 } -expectError
26ab4f7… drh 119 merge-test 8 {
26ab4f7… drh 120 1 2 3 4 5 6 7 8 9
26ab4f7… drh 121 } {
26ab4f7… drh 122 1 2 3b 4b 5b 6b 7 8b 9b
26ab4f7… drh 123 } {
26ab4f7… drh 124 1 2 3 4 5c 6c 7c 8c 9
26ab4f7… drh 125 } {
6aee052… florian 126 1 2 MINE: 3b 4b 5b 6b 7 8b 9b BOT: 3b 4b 5b 5c 6c 7c 8c 9b COM: 3 4 5 6 7 8 9 YOURS: 3 4 5c 6c 7c 8c 9 END
e5bcfd1… preben 127 } -expectError
26ab4f7… drh 128 merge-test 9 {
26ab4f7… drh 129 1 2 3 4 5 6 7 8 9
26ab4f7… drh 130 } {
26ab4f7… drh 131 1 2 3b 4b 5 6 7 8b 9b
26ab4f7… drh 132 } {
26ab4f7… drh 133 1 2 3 4 5c 6c 7c 8 9
26ab4f7… drh 134 } {
26ab4f7… drh 135 1 2 3b 4b 5c 6c 7c 8b 9b
26ab4f7… drh 136 }
26ab4f7… drh 137
26ab4f7… drh 138 merge-test 10 {
26ab4f7… drh 139 1 2 3 4 5 6 7 8 9
26ab4f7… drh 140 } {
26ab4f7… drh 141 1 2 3b 4b 5 6 7 8b 9b
26ab4f7… drh 142 } {
26ab4f7… drh 143 1 2 3b 4b 5 6c 7c 8 9
26ab4f7… drh 144 } {
26ab4f7… drh 145 1 2 3b 4b 5 6c 7c 8b 9b
26ab4f7… drh 146 }
26ab4f7… drh 147 merge-test 11 {
26ab4f7… drh 148 1 2 3 4 5 6 7 8 9
26ab4f7… drh 149 } {
26ab4f7… drh 150 1 2 3b 4b 5 6 7 8b 9b
26ab4f7… drh 151 } {
26ab4f7… drh 152 1 2 3b 4c 5 6c 7c 8 9
26ab4f7… drh 153 } {
6aee052… florian 154 1 2 MINE: 3b 4b BOT: 3b 4c COM: 3 4 YOURS: 3b 4c END 5 6c 7c 8b 9b
e5bcfd1… preben 155 } -expectError
26ab4f7… drh 156 merge-test 12 {
26ab4f7… drh 157 1 2 3 4 5 6 7 8 9
26ab4f7… drh 158 } {
26ab4f7… drh 159 1 2 3b4b 5 6 7 8b 9b
26ab4f7… drh 160 } {
26ab4f7… drh 161 1 2 3b4b 5 6c 7c 8 9
26ab4f7… drh 162 } {
26ab4f7… drh 163 1 2 3b4b 5 6c 7c 8b 9b
26ab4f7… drh 164 }
9263836… drh 165
9263836… drh 166 merge-test 20 {
9263836… drh 167 1 2 3 4 5 6 7 8 9
9263836… drh 168 } {
9263836… drh 169 1 3 4 5 6 7 8 9
9263836… drh 170 } {
9263836… drh 171 1 2 3 4 5 6 7 9
9263836… drh 172 } {
9263836… drh 173 1 3 4 5 6 7 9
9263836… drh 174 }
9263836… drh 175 merge-test 21 {
9263836… drh 176 1 2 3 4 5 6 7 8 9
9263836… drh 177 } {
9263836… drh 178 1 4 5 6 7 8 9
9263836… drh 179 } {
9263836… drh 180 1 2 3 4 5 6 9
9263836… drh 181 } {
9263836… drh 182 1 4 5 6 9
9263836… drh 183 }
9263836… drh 184 merge-test 22 {
9263836… drh 185 1 2 3 4 5 6 7 8 9
9263836… drh 186 } {
9263836… drh 187 1 5 6 7 8 9
9263836… drh 188 } {
9263836… drh 189 1 2 3 4 5 9
9263836… drh 190 } {
9263836… drh 191 1 5 9
9263836… drh 192 }
9263836… drh 193 merge-test 23 {
9263836… drh 194 1 2 3 4 5 6 7 8 9
9263836… drh 195 } {
9263836… drh 196 1 6 7 8 9
9263836… drh 197 } {
9263836… drh 198 1 2 3 4 5 9
9263836… drh 199 } {
9263836… drh 200 1 9
9263836… drh 201 }
9263836… drh 202 merge-test 24 {
9263836… drh 203 1 2 3 4 5 6 7 8 9
9263836… drh 204 } {
9263836… drh 205 1 6 7 8 9
9263836… drh 206 } {
9263836… drh 207 1 2 3 4 9
9263836… drh 208 } {
6aee052… florian 209 1 MINE: 6 7 8 BOT: 2 3 4 COM: 2 3 4 5 6 7 8 YOURS: 2 3 4 END 9
e5bcfd1… preben 210 } -expectError
9263836… drh 211 merge-test 25 {
9263836… drh 212 1 2 3 4 5 6 7 8 9
9263836… drh 213 } {
9263836… drh 214 1 7 8 9
9263836… drh 215 } {
9263836… drh 216 1 2 3 9
9263836… drh 217 } {
6aee052… florian 218 1 MINE: 7 8 BOT: 2 3 COM: 2 3 4 5 6 7 8 YOURS: 2 3 END 9
e5bcfd1… preben 219 } -expectError
9263836… drh 220
9263836… drh 221 merge-test 30 {
9263836… drh 222 1 2 3 4 5 6 7 8 9
9263836… drh 223 } {
9263836… drh 224 1 2 3 4 5 6 7 9
9263836… drh 225 } {
9263836… drh 226 1 3 4 5 6 7 8 9
9263836… drh 227 } {
9263836… drh 228 1 3 4 5 6 7 9
9263836… drh 229 }
9263836… drh 230 merge-test 31 {
9263836… drh 231 1 2 3 4 5 6 7 8 9
9263836… drh 232 } {
9263836… drh 233 1 2 3 4 5 6 9
9263836… drh 234 } {
9263836… drh 235 1 4 5 6 7 8 9
9263836… drh 236 } {
9263836… drh 237 1 4 5 6 9
9263836… drh 238 }
9263836… drh 239 merge-test 32 {
9263836… drh 240 1 2 3 4 5 6 7 8 9
9263836… drh 241 } {
9263836… drh 242 1 2 3 4 5 9
9263836… drh 243 } {
9263836… drh 244 1 5 6 7 8 9
9263836… drh 245 } {
9263836… drh 246 1 5 9
9263836… drh 247 }
9263836… drh 248 merge-test 33 {
9263836… drh 249 1 2 3 4 5 6 7 8 9
9263836… drh 250 } {
9263836… drh 251 1 2 3 4 5 9
9263836… drh 252 } {
9263836… drh 253 1 6 7 8 9
9263836… drh 254 } {
9263836… drh 255 1 9
9263836… drh 256 }
9263836… drh 257 merge-test 34 {
9263836… drh 258 1 2 3 4 5 6 7 8 9
9263836… drh 259 } {
9263836… drh 260 1 2 3 4 9
9263836… drh 261 } {
9263836… drh 262 1 6 7 8 9
9263836… drh 263 } {
6aee052… florian 264 1 MINE: 2 3 4 BOT: 6 7 8 COM: 2 3 4 5 6 7 8 YOURS: 6 7 8 END 9
e5bcfd1… preben 265 } -expectError
9263836… drh 266 merge-test 35 {
9263836… drh 267 1 2 3 4 5 6 7 8 9
9263836… drh 268 } {
9263836… drh 269 1 2 3 9
9263836… drh 270 } {
9263836… drh 271 1 7 8 9
9263836… drh 272 } {
6aee052… florian 273 1 MINE: 2 3 BOT: 7 8 COM: 2 3 4 5 6 7 8 YOURS: 7 8 END 9
e5bcfd1… preben 274 } -expectError
9263836… drh 275
9263836… drh 276 merge-test 40 {
9263836… drh 277 2 3 4 5 6 7 8
9263836… drh 278 } {
9263836… drh 279 3 4 5 6 7 8
9263836… drh 280 } {
9263836… drh 281 2 3 4 5 6 7
9263836… drh 282 } {
9263836… drh 283 3 4 5 6 7
9263836… drh 284 }
9263836… drh 285 merge-test 41 {
9263836… drh 286 2 3 4 5 6 7 8
9263836… drh 287 } {
9263836… drh 288 4 5 6 7 8
9263836… drh 289 } {
9263836… drh 290 2 3 4 5 6
9263836… drh 291 } {
9263836… drh 292 4 5 6
9263836… drh 293 }
9263836… drh 294 merge-test 42 {
9263836… drh 295 2 3 4 5 6 7 8
9263836… drh 296 } {
9263836… drh 297 5 6 7 8
9263836… drh 298 } {
9263836… drh 299 2 3 4 5
9263836… drh 300 } {
9263836… drh 301 5
9263836… drh 302 }
9263836… drh 303 merge-test 43 {
9263836… drh 304 2 3 4 5 6 7 8
9263836… drh 305 } {
9263836… drh 306 6 7 8
9263836… drh 307 } {
9263836… drh 308 2 3 4 5
9263836… drh 309 } {
6a3e2ed… andygoth 310
9263836… drh 311 }
9263836… drh 312 merge-test 44 {
9263836… drh 313 2 3 4 5 6 7 8
9263836… drh 314 } {
9263836… drh 315 6 7 8
9263836… drh 316 } {
9263836… drh 317 2 3 4
9263836… drh 318 } {
6aee052… florian 319 MINE: 6 7 8 BOT: 2 3 4 COM: 2 3 4 5 6 7 8 YOURS: 2 3 4 END
e5bcfd1… preben 320 } -expectError
9263836… drh 321 merge-test 45 {
9263836… drh 322 2 3 4 5 6 7 8
9263836… drh 323 } {
9263836… drh 324 7 8
9263836… drh 325 } {
9263836… drh 326 2 3
9263836… drh 327 } {
6aee052… florian 328 MINE: 7 8 BOT: 2 3 COM: 2 3 4 5 6 7 8 YOURS: 2 3 END
e5bcfd1… preben 329 } -expectError
9263836… drh 330
9263836… drh 331 merge-test 50 {
9263836… drh 332 2 3 4 5 6 7 8
9263836… drh 333 } {
9263836… drh 334 2 3 4 5 6 7
9263836… drh 335 } {
9263836… drh 336 3 4 5 6 7 8
9263836… drh 337 } {
9263836… drh 338 3 4 5 6 7
9263836… drh 339 }
9263836… drh 340 merge-test 51 {
9263836… drh 341 2 3 4 5 6 7 8
9263836… drh 342 } {
9263836… drh 343 2 3 4 5 6
9263836… drh 344 } {
9263836… drh 345 4 5 6 7 8
9263836… drh 346 } {
9263836… drh 347 4 5 6
9263836… drh 348 }
9263836… drh 349 merge-test 52 {
9263836… drh 350 2 3 4 5 6 7 8
9263836… drh 351 } {
9263836… drh 352 2 3 4 5
9263836… drh 353 } {
9263836… drh 354 5 6 7 8
9263836… drh 355 } {
9263836… drh 356 5
9263836… drh 357 }
9263836… drh 358 merge-test 53 {
9263836… drh 359 2 3 4 5 6 7 8
9263836… drh 360 } {
9263836… drh 361 2 3 4 5
9263836… drh 362 } {
9263836… drh 363 6 7 8
9263836… drh 364 } {
9263836… drh 365 }
9263836… drh 366 merge-test 54 {
9263836… drh 367 2 3 4 5 6 7 8
9263836… drh 368 } {
9263836… drh 369 2 3 4
9263836… drh 370 } {
9263836… drh 371 6 7 8
9263836… drh 372 } {
6aee052… florian 373 MINE: 2 3 4 BOT: 6 7 8 COM: 2 3 4 5 6 7 8 YOURS: 6 7 8 END
e5bcfd1… preben 374 } -expectError
9263836… drh 375 merge-test 55 {
9263836… drh 376 2 3 4 5 6 7 8
9263836… drh 377 } {
9263836… drh 378 2 3
9263836… drh 379 } {
9263836… drh 380 7 8
9263836… drh 381 } {
6aee052… florian 382 MINE: 2 3 BOT: 7 8 COM: 2 3 4 5 6 7 8 YOURS: 7 8 END
e5bcfd1… preben 383 } -expectError
9263836… drh 384
9263836… drh 385 merge-test 60 {
9263836… drh 386 1 2 3 4 5 6 7 8 9
9263836… drh 387 } {
9263836… drh 388 1 2b 3 4 5 6 7 8 9
9263836… drh 389 } {
9263836… drh 390 1 2 3 4 5 6 7 9
9263836… drh 391 } {
9263836… drh 392 1 2b 3 4 5 6 7 9
9263836… drh 393 }
9263836… drh 394 merge-test 61 {
9263836… drh 395 1 2 3 4 5 6 7 8 9
9263836… drh 396 } {
9263836… drh 397 1 2b 3b 4 5 6 7 8 9
9263836… drh 398 } {
9263836… drh 399 1 2 3 4 5 6 9
9263836… drh 400 } {
9263836… drh 401 1 2b 3b 4 5 6 9
9263836… drh 402 }
9263836… drh 403 merge-test 62 {
9263836… drh 404 1 2 3 4 5 6 7 8 9
9263836… drh 405 } {
9263836… drh 406 1 2b 3b 4b 5 6 7 8 9
9263836… drh 407 } {
9263836… drh 408 1 2 3 4 5 9
9263836… drh 409 } {
9263836… drh 410 1 2b 3b 4b 5 9
9263836… drh 411 }
9263836… drh 412 merge-test 63 {
9263836… drh 413 1 2 3 4 5 6 7 8 9
9263836… drh 414 } {
9263836… drh 415 1 2b 3b 4b 5b 6 7 8 9
9263836… drh 416 } {
9263836… drh 417 1 2 3 4 5 9
9263836… drh 418 } {
9263836… drh 419 1 2b 3b 4b 5b 9
9263836… drh 420 }
9263836… drh 421 merge-test 64 {
9263836… drh 422 1 2 3 4 5 6 7 8 9
9263836… drh 423 } {
9263836… drh 424 1 2b 3b 4b 5b 6 7 8 9
9263836… drh 425 } {
9263836… drh 426 1 2 3 4 9
9263836… drh 427 } {
6aee052… florian 428 1 MINE: 2b 3b 4b 5b 6 7 8 BOT: 2b 3b 4b 4 COM: 2 3 4 5 6 7 8 YOURS: 2 3 4 END 9
e5bcfd1… preben 429 } -expectError
9263836… drh 430 merge-test 65 {
9263836… drh 431 1 2 3 4 5 6 7 8 9
9263836… drh 432 } {
9263836… drh 433 1 2b 3b 4b 5b 6b 7 8 9
9263836… drh 434 } {
9263836… drh 435 1 2 3 9
9263836… drh 436 } {
6aee052… florian 437 1 MINE: 2b 3b 4b 5b 6b 7 8 BOT: 2 3 COM: 2 3 4 5 6 7 8 YOURS: 2 3 END 9
e5bcfd1… preben 438 } -expectError
9263836… drh 439
9263836… drh 440 merge-test 70 {
9263836… drh 441 1 2 3 4 5 6 7 8 9
9263836… drh 442 } {
9263836… drh 443 1 2 3 4 5 6 7 9
9263836… drh 444 } {
9263836… drh 445 1 2b 3 4 5 6 7 8 9
9263836… drh 446 } {
9263836… drh 447 1 2b 3 4 5 6 7 9
9263836… drh 448 }
9263836… drh 449 merge-test 71 {
9263836… drh 450 1 2 3 4 5 6 7 8 9
9263836… drh 451 } {
9263836… drh 452 1 2 3 4 5 6 9
9263836… drh 453 } {
9263836… drh 454 1 2b 3b 4 5 6 7 8 9
9263836… drh 455 } {
9263836… drh 456 1 2b 3b 4 5 6 9
9263836… drh 457 }
9263836… drh 458 merge-test 72 {
9263836… drh 459 1 2 3 4 5 6 7 8 9
9263836… drh 460 } {
9263836… drh 461 1 2 3 4 5 9
9263836… drh 462 } {
9263836… drh 463 1 2b 3b 4b 5 6 7 8 9
9263836… drh 464 } {
9263836… drh 465 1 2b 3b 4b 5 9
9263836… drh 466 }
9263836… drh 467 merge-test 73 {
9263836… drh 468 1 2 3 4 5 6 7 8 9
9263836… drh 469 } {
9263836… drh 470 1 2 3 4 5 9
9263836… drh 471 } {
9263836… drh 472 1 2b 3b 4b 5b 6 7 8 9
9263836… drh 473 } {
9263836… drh 474 1 2b 3b 4b 5b 9
9263836… drh 475 }
9263836… drh 476 merge-test 74 {
9263836… drh 477 1 2 3 4 5 6 7 8 9
9263836… drh 478 } {
9263836… drh 479 1 2 3 4 9
9263836… drh 480 } {
9263836… drh 481 1 2b 3b 4b 5b 6 7 8 9
9263836… drh 482 } {
6aee052… florian 483 1 MINE: 2 3 4 BOT: 2b 3b 4b 5b 6 7 8 COM: 2 3 4 5 6 7 8 YOURS: 2b 3b 4b 5b 6 7 8 END 9
e5bcfd1… preben 484 } -expectError
9263836… drh 485 merge-test 75 {
9263836… drh 486 1 2 3 4 5 6 7 8 9
9263836… drh 487 } {
9263836… drh 488 1 2 3 9
9263836… drh 489 } {
9263836… drh 490 1 2b 3b 4b 5b 6b 7 8 9
9263836… drh 491 } {
6aee052… florian 492 1 MINE: 2 3 BOT: 2b 3b 4b 5b 6b 7 8 COM: 2 3 4 5 6 7 8 YOURS: 2b 3b 4b 5b 6b 7 8 END 9
e5bcfd1… preben 493 } -expectError
9263836… drh 494
9263836… drh 495 merge-test 80 {
9263836… drh 496 2 3 4 5 6 7 8
9263836… drh 497 } {
9263836… drh 498 2b 3 4 5 6 7 8
9263836… drh 499 } {
9263836… drh 500 2 3 4 5 6 7
9263836… drh 501 } {
9263836… drh 502 2b 3 4 5 6 7
9263836… drh 503 }
9263836… drh 504 merge-test 81 {
9263836… drh 505 2 3 4 5 6 7 8
9263836… drh 506 } {
9263836… drh 507 2b 3b 4 5 6 7 8
9263836… drh 508 } {
9263836… drh 509 2 3 4 5 6
9263836… drh 510 } {
9263836… drh 511 2b 3b 4 5 6
9263836… drh 512 }
9263836… drh 513 merge-test 82 {
9263836… drh 514 2 3 4 5 6 7 8
9263836… drh 515 } {
9263836… drh 516 2b 3b 4b 5 6 7 8
9263836… drh 517 } {
9263836… drh 518 2 3 4 5
9263836… drh 519 } {
9263836… drh 520 2b 3b 4b 5
9263836… drh 521 }
9263836… drh 522 merge-test 83 {
9263836… drh 523 2 3 4 5 6 7 8
9263836… drh 524 } {
9263836… drh 525 2b 3b 4b 5b 6 7 8
9263836… drh 526 } {
9263836… drh 527 2 3 4 5
9263836… drh 528 } {
9263836… drh 529 2b 3b 4b 5b
9263836… drh 530 }
9263836… drh 531 merge-test 84 {
9263836… drh 532 2 3 4 5 6 7 8
9263836… drh 533 } {
9263836… drh 534 2b 3b 4b 5b 6 7 8
9263836… drh 535 } {
9263836… drh 536 2 3 4
9263836… drh 537 } {
6aee052… florian 538 MINE: 2b 3b 4b 5b 6 7 8 BOT: 2b 3b 4b 4 COM: 2 3 4 5 6 7 8 YOURS: 2 3 4 END
e5bcfd1… preben 539 } -expectError
9263836… drh 540 merge-test 85 {
9263836… drh 541 2 3 4 5 6 7 8
9263836… drh 542 } {
9263836… drh 543 2b 3b 4b 5b 6b 7 8
9263836… drh 544 } {
9263836… drh 545 2 3
9263836… drh 546 } {
6aee052… florian 547 MINE: 2b 3b 4b 5b 6b 7 8 BOT: 2 3 COM: 2 3 4 5 6 7 8 YOURS: 2 3 END
e5bcfd1… preben 548 } -expectError
9263836… drh 549
9263836… drh 550 merge-test 90 {
9263836… drh 551 2 3 4 5 6 7 8
9263836… drh 552 } {
9263836… drh 553 2 3 4 5 6 7
9263836… drh 554 } {
9263836… drh 555 2b 3 4 5 6 7 8
9263836… drh 556 } {
9263836… drh 557 2b 3 4 5 6 7
9263836… drh 558 }
9263836… drh 559 merge-test 91 {
9263836… drh 560 2 3 4 5 6 7 8
9263836… drh 561 } {
9263836… drh 562 2 3 4 5 6
9263836… drh 563 } {
9263836… drh 564 2b 3b 4 5 6 7 8
9263836… drh 565 } {
9263836… drh 566 2b 3b 4 5 6
9263836… drh 567 }
9263836… drh 568 merge-test 92 {
9263836… drh 569 2 3 4 5 6 7 8
9263836… drh 570 } {
9263836… drh 571 2 3 4 5
9263836… drh 572 } {
9263836… drh 573 2b 3b 4b 5 6 7 8
9263836… drh 574 } {
9263836… drh 575 2b 3b 4b 5
9263836… drh 576 }
9263836… drh 577 merge-test 93 {
9263836… drh 578 2 3 4 5 6 7 8
9263836… drh 579 } {
9263836… drh 580 2 3 4 5
9263836… drh 581 } {
9263836… drh 582 2b 3b 4b 5b 6 7 8
9263836… drh 583 } {
9263836… drh 584 2b 3b 4b 5b
9263836… drh 585 }
9263836… drh 586 merge-test 94 {
9263836… drh 587 2 3 4 5 6 7 8
9263836… drh 588 } {
9263836… drh 589 2 3 4
9263836… drh 590 } {
9263836… drh 591 2b 3b 4b 5b 6 7 8
9263836… drh 592 } {
6aee052… florian 593 MINE: 2 3 4 BOT: 2b 3b 4b 5b 6 7 8 COM: 2 3 4 5 6 7 8 YOURS: 2b 3b 4b 5b 6 7 8 END
e5bcfd1… preben 594 } -expectError
9263836… drh 595 merge-test 95 {
9263836… drh 596 2 3 4 5 6 7 8
9263836… drh 597 } {
9263836… drh 598 2 3
9263836… drh 599 } {
9263836… drh 600 2b 3b 4b 5b 6b 7 8
9263836… drh 601 } {
6aee052… florian 602 MINE: 2 3 BOT: 2b 3b 4b 5b 6b 7 8 COM: 2 3 4 5 6 7 8 YOURS: 2b 3b 4b 5b 6b 7 8 END
e5bcfd1… preben 603 } -expectError
9263836… drh 604
9263836… drh 605 merge-test 100 {
9263836… drh 606 1 2 3 4 5 6 7 8 9
9263836… drh 607 } {
9263836… drh 608 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 609 } {
9263836… drh 610 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 611 } {
9263836… drh 612 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 613 }
9263836… drh 614 merge-test 101 {
9263836… drh 615 1 2 3 4 5 6 7 8 9
9263836… drh 616 } {
9263836… drh 617 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 618 } {
9263836… drh 619 1 2b 3 4 5 7 8 9
9263836… drh 620 } {
9263836… drh 621 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 622 }
9263836… drh 623 merge-test 102 {
9263836… drh 624 1 2 3 4 5 6 7 8 9
9263836… drh 625 } {
9263836… drh 626 1 2b 3 4 5 7 8 9
9263836… drh 627 } {
9263836… drh 628 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 629 } {
9263836… drh 630 1 2b 3 4 5 7 8 9 a b c d e
9263836… drh 631 }
9263836… drh 632 merge-test 103 {
9263836… drh 633 1 2 3 4 5 6 7 8 9
9263836… drh 634 } {
9263836… drh 635 1 2 3 4 5 7 8 9b
9263836… drh 636 } {
9263836… drh 637 1 2 3 4 5 7 8 9b a b c d e
9263836… drh 638 } {
6aee052… florian 639 1 2 3 4 5 7 8 MINE: 9b BOT: 9b a b c d e COM: 9 YOURS: 9b a b c d e END
e5bcfd1… preben 640 } -expectError
9263836… drh 641 merge-test 104 {
9263836… drh 642 1 2 3 4 5 6 7 8 9
9263836… drh 643 } {
9263836… drh 644 1 2 3 4 5 7 8 9b a b c d e
9263836… drh 645 } {
9263836… drh 646 1 2 3 4 5 7 8 9b
9263836… drh 647 } {
6aee052… florian 648 1 2 3 4 5 7 8 MINE: 9b a b c d e BOT: 9b COM: 9 YOURS: 9b END
e5bcfd1… preben 649 } -expectError
fa59221… mistachkin 650
fa59221… mistachkin 651 ###############################################################################
fa59221… mistachkin 652
fa59221… mistachkin 653 test_cleanup

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button