##// END OF EJS Templates
tests: fix command line overflow on ksh...
Jim Hague -
r16069:f680ed10 stable
parent child Browse files
Show More
@@ -1,9 +1,9 b''
1 $ check_code="$TESTDIR"/../contrib/check-code.py
1 $ check_code="$TESTDIR"/../contrib/check-code.py
2 $ cd "$TESTDIR"/..
2 $ cd "$TESTDIR"/..
3
3
4 $ "$check_code" `hg manifest` || echo 'FAILURE IS NOT AN OPTION!!!'
4 $ hg manifest | xargs "$check_code" || echo 'FAILURE IS NOT AN OPTION!!!'
5
5
6 $ "$check_code" --warnings --nolineno --per-file=0 `hg manifest`
6 $ hg manifest | xargs "$check_code" --warnings --nolineno --per-file=0
7 contrib/check-code.py:0:
7 contrib/check-code.py:0:
8 > # (r'^\s+[^_ \n][^_. \n]+_[^_\n]+\s*=', "don't use underbars in identifiers"),
8 > # (r'^\s+[^_ \n][^_. \n]+_[^_\n]+\s*=', "don't use underbars in identifiers"),
9 warning: line over 80 characters
9 warning: line over 80 characters
@@ -657,4 +657,4 b''
657 tests/test-walkrepo.py:0:
657 tests/test-walkrepo.py:0:
658 > print "Found %d repositories when I should have found 3" % (len(reposet),)
658 > print "Found %d repositories when I should have found 3" % (len(reposet),)
659 warning: line over 80 characters
659 warning: line over 80 characters
660 [1]
660 [123]
General Comments 0
You need to be logged in to leave comments. Login now