test-hghave.t
46 lines
| 1.1 KiB
| text/troff
|
Tads3Lexer
/ tests / test-hghave.t
Adam Simpkins
|
r33116 | $ . "$TESTDIR/helpers-testrepo.sh" | ||
Matt Mackall
|
r12430 | Testing that hghave does not crash when checking features | ||
Matt Mackall
|
r25472 | $ hghave --test-features 2>/dev/null | ||
FUJIWARA Katsunori
|
r25732 | |||
Testing hghave extensibility for third party tools | ||||
$ cat > hghaveaddon.py <<EOF | ||||
> import hghave | ||||
> @hghave.check("custom", "custom hghave feature") | ||||
> def has_custom(): | ||||
> return True | ||||
> EOF | ||||
(invocation via run-tests.py) | ||||
$ cat > test-hghaveaddon.t <<EOF | ||||
> #require custom | ||||
> $ echo foo | ||||
> foo | ||||
> EOF | ||||
Adam Simpkins
|
r33116 | $ ( \ | ||
Yuya Nishihara
|
r33199 | > testrepohgenv; \ | ||
Gregory Szorc
|
r43275 | > "$PYTHON" $TESTDIR/run-tests.py --with-hg=`which hg` -j 1 \ | ||
Augie Fackler
|
r40293 | > $HGTEST_RUN_TESTS_PURE test-hghaveaddon.t \ | ||
Adam Simpkins
|
r33116 | > ) | ||
Augie Fackler
|
r40293 | running 1 tests using 1 parallel processes | ||
FUJIWARA Katsunori
|
r25732 | . | ||
Gregory Szorc
|
r32942 | # Ran 1 tests, 0 skipped, 0 failed. | ||
FUJIWARA Katsunori
|
r25732 | |||
(invocation via command line) | ||||
$ unset TESTDIR | ||||
$ hghave custom | ||||
(terminate with exit code 2 at failure of importing hghaveaddon.py) | ||||
$ rm hghaveaddon.* | ||||
FUJIWARA Katsunori
|
r40241 | $ cat > hghaveaddon.py <<NO_CHECK_EOF | ||
FUJIWARA Katsunori
|
r25732 | > importing this file should cause syntax error | ||
FUJIWARA Katsunori
|
r40241 | > NO_CHECK_EOF | ||
FUJIWARA Katsunori
|
r25732 | |||
$ hghave custom | ||||
failed to import hghaveaddon.py from '.': invalid syntax (hghaveaddon.py, line 1) | ||||
[2] | ||||