##// END OF EJS Templates
test-command-template: Don't diff files with same content...
Mads Kiilerich -
r9382:829ac0af default
parent child Browse files
Show More
@@ -43,15 +43,15 b" echo '# default style is like normal out"
43 echo '# normal'
43 echo '# normal'
44 hg log > log.out
44 hg log > log.out
45 hg log --style default > style.out
45 hg log --style default > style.out
46 diff -u log.out style.out
46 cmp log.out style.out || diff -u log.out style.out
47 echo '# verbose'
47 echo '# verbose'
48 hg log -v > log.out
48 hg log -v > log.out
49 hg log -v --style default > style.out
49 hg log -v --style default > style.out
50 diff -u log.out style.out
50 cmp log.out style.out || diff -u log.out style.out
51 echo '# debug'
51 echo '# debug'
52 hg log --debug > log.out
52 hg log --debug > log.out
53 hg log --debug --style default > style.out
53 hg log --debug --style default > style.out
54 diff -u log.out style.out
54 cmp log.out style.out || diff -u log.out style.out
55
55
56 echo '# revision with no copies (used to print a traceback)'
56 echo '# revision with no copies (used to print a traceback)'
57 hg tip -v --template '\n'
57 hg tip -v --template '\n'
General Comments 0
You need to be logged in to leave comments. Login now