##// END OF EJS Templates
tests: do not skip code-checking on some whole files...
Simon Heimberg -
r19381:e033a7d4 default
parent child Browse files
Show More
@@ -42,7 +42,7 b' for line in sys.stdin:'
42 f = open(os.path.join(os.path.dirname(os.path.dirname(__file__)), fn))
42 f = open(os.path.join(os.path.dirname(os.path.dirname(__file__)), fn))
43 data = f.read()
43 data = f.read()
44 f.close()
44 f.close()
45 if 'no-check-code' in data:
45 if 'no-' 'check-code' in data:
46 continue
46 continue
47 lines.append((msgtype, line))
47 lines.append((msgtype, line))
48
48
@@ -1,6 +1,6 b''
1 $ remove() {
1 $ remove() {
2 > hg rm $@
2 > hg rm $@
3 > echo "exit code: $?" # no-check-code
3 > echo "exit code: $?"
4 > hg st
4 > hg st
5 > # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
5 > # do not use ls -R, which recurses in .hg subdirs on Mac OS X 10.5
6 > find . -name .hg -prune -o -type f -print | sort
6 > find . -name .hg -prune -o -type f -print | sort
General Comments 0
You need to be logged in to leave comments. Login now