##// END OF EJS Templates
fix test failures that depend on when tests run.
Vadim Gelfer -
r1916:95b2e148 default
parent child Browse files
Show More
@@ -26,13 +26,13 b" echo 'style =' >> .hg/hgrc"
26 echo '# default style is like normal output'
26 echo '# default style is like normal output'
27 hg log > log.out
27 hg log > log.out
28 hg log --style default > style.out
28 hg log --style default > style.out
29 diff -u log.out style.out
29 diff log.out style.out
30 hg log -v > log.out
30 hg log -v > log.out
31 hg log -v --style default > style.out
31 hg log -v --style default > style.out
32 diff -u log.out style.out
32 diff log.out style.out
33 hg log --debug > log.out
33 hg log --debug > log.out
34 hg log --debug --style default > style.out
34 hg log --debug --style default > style.out
35 diff -u log.out style.out
35 diff log.out style.out
36
36
37 echo '# compact style works'
37 echo '# compact style works'
38 hg log --style compact
38 hg log --style compact
@@ -77,7 +77,7 b" echo '# filters work'"
77 hg log --template '{author|domain}\n'
77 hg log --template '{author|domain}\n'
78 hg log --template '{author|person}\n'
78 hg log --template '{author|person}\n'
79 hg log --template '{author|user}\n'
79 hg log --template '{author|user}\n'
80 hg log --template '{date|age}\n'
80 hg log --template '{date|age}\n' > /dev/null || exit 1
81 hg log --template '{date|date}\n'
81 hg log --template '{date|date}\n'
82 hg log --template '{date|isodate}\n'
82 hg log --template '{date|isodate}\n'
83 hg log --template '{date|rfc822date}\n'
83 hg log --template '{date|rfc822date}\n'
General Comments 0
You need to be logged in to leave comments. Login now