##// END OF EJS Templates
tests: skip a detailed exit status in test-lfs-test-server...
tests: skip a detailed exit status in test-lfs-test-server The mode of failure here differs between `lfs-test-server` and `hg serve`, and they each throw a different exception. The `hg serve` case raises a subclass of `StorageError`, which gets a detailed status. The `lfs-test-server` case raises a subclass of `Abort`, which does not. Since the exit code isn't currently conditionizable in the tests, this is the simplest way to avoid the failure. Differential Revision: https://phab.mercurial-scm.org/D9836

File last commit:

r41041:69c99898 default
r47062:47b11629 stable
Show More
check-gendoc
11 lines | 343 B | text/plain | TextLexer
timeless
tests: splitting test-gendoc.t into per file tests...
r28809 #!/bin/sh
HGENCODING=UTF-8
export HGENCODING
echo ".. -*- coding: utf-8 -*-" > gendoc.txt
echo "" >> gendoc.txt
Matt Harbison
py3: replace hard coded `python` with $PYTHON in check-gendoc
r41041 LANGUAGE=$1 "$PYTHON" "$TESTDIR/../doc/gendoc.py" >> gendoc.txt 2> /dev/null || exit
timeless
tests: splitting test-gendoc.t into per file tests...
r28809
echo "checking for parse errors"
Matt Harbison
py3: replace hard coded `python` with $PYTHON in check-gendoc
r41041 "$PYTHON" "$TESTDIR/../doc/docchecker" gendoc.txt
"$PYTHON" "$TESTDIR/../doc/runrst" html gendoc.txt /dev/null