test-requires.t
17 lines
| 465 B
| text/troff
|
Tads3Lexer
/ tests / test-requires.t
Martin Geisler
|
r13956 | $ hg init t | ||
Nicolas Dumazet
|
r12116 | $ cd t | ||
$ echo a > a | ||||
$ hg add a | ||||
Martin Geisler
|
r12156 | $ hg commit -m test | ||
Nicolas Dumazet
|
r12116 | $ rm .hg/requires | ||
$ hg tip | ||||
abort: index 00changelog.i unknown format 2! | ||||
Matt Mackall
|
r12316 | [255] | ||
Nicolas Dumazet
|
r12116 | $ echo indoor-pool > .hg/requires | ||
$ hg tip | ||||
Pierre-Yves David
|
r14746 | abort: unknown repository format: requires features 'indoor-pool' (upgrade Mercurial)! | ||
Matt Mackall
|
r12316 | [255] | ||
Pierre-Yves David
|
r14746 | $ echo outdoor-pool >> .hg/requires | ||
$ hg tip | ||||
abort: unknown repository format: requires features 'indoor-pool', 'outdoor-pool' (upgrade Mercurial)! | ||||
[255] | ||||