##// END OF EJS Templates
templatefilters: add filter to convert date to local date (issue1674)...
templatefilters: add filter to convert date to local date (issue1674) Issue1674 suggests the localdate filter be applied as default to log, but this patch only introduces the filter, not the changed default behaviour.

File last commit:

r8167:6c82beaa default
r8591:08c93b07 default
Show More
test-diff-binary-file
25 lines | 415 B | text/plain | TextLexer
/ tests / test-diff-binary-file
Alexis S. L. Carvalho
add test for diffing identical binary files
r4104 #!/bin/sh
hg init a
cd a
cp $TESTDIR/binfile.bin .
hg add binfile.bin
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m 'add binfile.bin'
Alexis S. L. Carvalho
add test for diffing identical binary files
r4104
echo >> binfile.bin
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m 'change binfile.bin'
Alexis S. L. Carvalho
add test for diffing identical binary files
r4104
hg revert -r 0 binfile.bin
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -m 'revert binfile.bin'
Alexis S. L. Carvalho
add test for diffing identical binary files
r4104
echo % diff -r 0 -r 1
hg diff --nodates -r 0 -r 1
echo % diff -r 0 -r 2
hg diff --nodates -r 0 -r 2
echo % diff --git -r 0 -r 1
hg diff --git -r 0 -r 1
echo % diff --git -r 0 -r 2
hg diff --git -r 0 -r 2