##// END OF EJS Templates
test-hook.t: Solaris /usr/bin/egrep do not support {4}
test-hook.t: Solaris /usr/bin/egrep do not support {4}

File last commit:

r16913:f2719b38 default
r17283:a4034b86 stable
Show More
test-requires.t
19 lines | 476 B | text/troff | Tads3Lexer
$ hg init t
$ cd t
$ echo a > a
$ hg add a
$ hg commit -m test
$ rm .hg/requires
$ hg tip
abort: index 00changelog.i unknown format 2!
[255]
$ echo indoor-pool > .hg/requires
$ hg tip
abort: unknown repository format: requires features 'indoor-pool' (upgrade Mercurial)!
[255]
$ echo outdoor-pool >> .hg/requires
$ hg tip
abort: unknown repository format: requires features 'indoor-pool', 'outdoor-pool' (upgrade Mercurial)!
[255]
$ cd ..