test-bad-extension.t
46 lines
| 1.6 KiB
| text/troff
|
Tads3Lexer
/ tests / test-bad-extension.t
Martin Geisler
|
r11858 | $ echo 'raise Exception("bit bucket overflow")' > badext.py | ||
$ abspath=`pwd`/badext.py | ||||
Yuya Nishihara
|
r23172 | $ cat <<EOF >> $HGRCPATH | ||
> [extensions] | ||||
> gpg = | ||||
> hgext.gpg = | ||||
> badext = $abspath | ||||
> badext2 = | ||||
> EOF | ||||
Martin Geisler
|
r11858 | |||
$ hg -q help help | ||||
Mads Kiilerich
|
r12640 | *** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow | ||
Brodie Rao
|
r12375 | *** failed to import extension badext2: No module named badext2 | ||
Martin Geisler
|
r14286 | hg help [-ec] [TOPIC] | ||
Martin Geisler
|
r11858 | |||
show help for a given topic or a help overview | ||||
Yuya Nishihara
|
r25364 | |||
show traceback | ||||
$ hg -q help help --traceback 2>&1 | grep -v '^ ' | ||||
*** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow | ||||
Traceback (most recent call last): | ||||
Exception: bit bucket overflow | ||||
*** failed to import extension badext2: No module named badext2 | ||||
Traceback (most recent call last): | ||||
ImportError: No module named badext2 | ||||
hg help [-ec] [TOPIC] | ||||
show help for a given topic or a help overview | ||||
show traceback for ImportError of hgext.name if debug is set | ||||
(note that --debug option isn't applied yet when loading extensions) | ||||
$ hg help help --traceback --config ui.debug=True 2>&1 \ | ||||
> | grep -v '^ ' | head -n10 | ||||
*** failed to import extension badext from $TESTTMP/badext.py: bit bucket overflow | ||||
Traceback (most recent call last): | ||||
Exception: bit bucket overflow | ||||
could not import hgext.badext2 (No module named badext2): trying badext2 | ||||
Traceback (most recent call last): | ||||
ImportError: No module named badext2 | ||||
*** failed to import extension badext2: No module named badext2 | ||||
Traceback (most recent call last): | ||||
ImportError: No module named badext2 | ||||
hg help [-ec] [TOPIC] | ||||