sapling/tests/test-bad-extension
Alexis S. L. Carvalho 16c4d42a8d load extensions only after the ui object has been completely initialized
This fixes a traceback printed when hg tries to print another traceback
after an extension fails to be loaded.  Add a test for that.
2006-08-22 22:49:30 -03:00

10 lines
156 B
Bash
Executable File

#!/bin/sh
echo 'syntax error' > badext.py
abspath=`pwd`/badext.py
echo '[extensions]' >> $HGRCPATH
echo "badext = $abspath" >> $HGRCPATH
hg -q help help