##// END OF EJS Templates
test-check-commit: don't run hg per commit...
Yuya Nishihara -
r37705:8872d466 default
parent child Browse files
Show More
@@ -8,15 +8,16 b' Go back in the hg repo'
8 8
9 9 $ cd $TESTDIR/..
10 10
11 $ for node in `testrepohg log --rev 'not public() and ::. and not desc("# no-check-commit")' --template '{node|short}\n'`; do
12 > testrepohg export --git $node \
13 > | contrib/check-commit > ${TESTTMP}/check-commit.out
11 $ mkdir "$TESTTMP/p"
12 $ testrepohg export --git -o "$TESTTMP/p/%n-%h" \
13 > -r 'not public() and ::. and not desc("# no-check-commit")'
14 $ for f in `ls "$TESTTMP/p"`; do
15 > contrib/check-commit < "$TESTTMP/p/$f" > "$TESTTMP/check-commit.out"
14 16 > if [ $? -ne 0 ]; then
17 > node="${f##*-}"
15 18 > echo "Revision $node does not comply with rules"
16 19 > echo '------------------------------------------------------'
17 20 > cat ${TESTTMP}/check-commit.out
18 21 > echo
19 22 > fi
20 23 > done
21
22
General Comments 0
You need to be logged in to leave comments. Login now