##// END OF EJS Templates
tests: remove unneeded -d flags...
tests: remove unneeded -d flags Many tests fixed the commit date of their changesets at '1000000 0' or similar. However testing with "Mon Jan 12 13:46:40 1970 +0000" is not better than testing with "Thu Jan 01 00:00:00 1970 +0000", which is the default run-tests.py installs. Removing the unnecessary flag removes some clutter and will hopefully make it clearer what the tests are really trying to test. Some tests did not even change their output when the dates were changed, in which case the -d flag was truly irrelevant. Dates used in sequence (such as '0 0', '1 0', etc...) were left alone since they may make the test easier to understand.

File last commit:

r9711:d29bd00b default
r12156:4c94b6d0 default
Show More
test-diff-color
64 lines | 724 B | text/plain | TextLexer
Augie Fackler
color: Add tests for colorized diff and status output.
r7458 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "color=" >> $HGRCPATH
hg init repo
cd repo
cat > a <<EOF
c
c
a
a
b
a
a
c
c
EOF
hg ci -Am adda
cat > a <<EOF
c
c
a
a
dd
a
a
c
c
EOF
echo '% default context'
hg diff --nodates --color=always
echo '% --unified=2'
Brodie Rao
color: add test for record support
r9579 hg diff --nodates -U 2 --color=always
Brodie Rao
color: colorize diff --stat
r9641 echo '% diffstat'
hg diff --stat --color=always
Brodie Rao
color: add test for record support
r9579 echo "record=" >> $HGRCPATH
echo "[ui]" >> $HGRCPATH
echo "interactive=true" >> $HGRCPATH
echo "[diff]" >> $HGRCPATH
echo "git=True" >> $HGRCPATH
echo % record
chmod 0755 a
hg record --color=always -m moda a <<EOF
y
y
EOF
echo
Martin Geisler
color: wrap qrecord...
r9711
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg rollback
echo % qrecord
hg qrecord --color=always -m moda patch <<EOF
y
y
EOF
echo