##// END OF EJS Templates
backout: remove unnecessary frobbing of addremove option...
backout: remove unnecessary frobbing of addremove option There's no way for addremove to show up in backout's opts dictionary. It was being set manually because cmdutil.commit expected it to be there (and would throw an exception if it wasn't). This was fixed waaaaaaay back in: changeset: 5829:784073457a0f user: Kirill Smelkov <kirr@mns.spb.ru> date: Thu Jan 10 12:07:18 2008 +0300 summary: cmdutil.commit: extract 'addremove' from opts carefully

File last commit:

r18602:339a3fa1 default
r18686:0bca4d31 default
Show More
test-check-code-hg.t
13 lines | 382 B | text/troff | Tads3Lexer
/ tests / test-check-code-hg.t
Mads Kiilerich
tests: convert test-check-code-hg.py to .t
r15557 $ check_code="$TESTDIR"/../contrib/check-code.py
$ cd "$TESTDIR"/..
Kevin Bullock
tests: guard against obsolete markers in the hg repo itself...
r18601 $ if hg identify -q > /dev/null 2>&1; then :
Mads Kiilerich
tests: solaris sh can not negate exit status with '!'
r16485 > else
Greg Ward
test-check-code-hg: skip test if not in a working dir (issue3248).
r16179 > echo "skipped: not a Mercurial working dir" >&2
> exit 80
> fi
Mads Kiilerich
tests: run check-code with warnings and maintain a whitelist...
r15558
Matt Mackall
tests: only call check-code once...
r17977 New errors are not allowed. Warnings are strongly discouraged.
Kevin Bullock
tests: guard against obsolete markers in the hg repo itself...
r18601 $ hg manifest 2>/dev/null \
> | xargs "$check_code" --warnings --nolineno --per-file=0 \
> || false