##// END OF EJS Templates
patchbomb: fix 'echo -en' bashism in test-patchbomb...
patchbomb: fix 'echo -en' bashism in test-patchbomb The echo command doesn't accept options in some shells. printf is required by the SUSv2 (Single UNIX Specification v2).

File last commit:

r5689:c2d0ed7f default
r9730:732fc0e9 default
Show More
test-diff-hashes
27 lines | 341 B | text/plain | TextLexer
Alexis S. L. Carvalho
use short hashes with diff -v
r3387 #!/bin/sh
hg init a
cd a
Patrick Mezard
Move diffing missing file test and remove test-notfound...
r5689 hg diff not found
Alexis S. L. Carvalho
use short hashes with diff -v
r3387 echo bar > foo
hg add foo
hg ci -m 'add foo' -d '1000000 0'
echo foobar > foo
hg ci -m 'change foo' -d '1000001 0'
echo 'quiet:'
hg --quiet diff -r 0 -r 1
echo
echo 'normal:'
hg diff -r 0 -r 1
echo
echo 'verbose:'
hg --verbose diff -r 0 -r 1
echo
echo 'debug:'
hg --debug diff -r 0 -r 1
echo