Mercurial > hg
view tests/test-fncache @ 9851:9e7b2c49d25d
Make it possible to debug failed hook imports via use of --traceback
Prior to this change, if a Python hook module failed to load (e.g. due
to an import error or path problem), it was impossible to figure out
why the error occurred, because the ImportErrors that got raised were
caught but never displayed.
If run with --traceback or ui.traceback=True, hg now prints tracebacks
of both of the ImportError instances that get raised before it bails.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 12 Nov 2009 14:05:52 -0800 |
parents | 2816239e0020 |
children |
line wrap: on
line source
#!/bin/sh echo "% init repo1" hg init repo1 cd repo1 echo echo "% add a; ci" echo "some text" > a hg add hg ci -m first echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% add a.i/b; ci" mkdir a.i echo "some other text" > a.i/b hg add hg ci -m second echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% add a.i.hg/c; ci" mkdir a.i.hg echo "yet another text" > a.i.hg/c hg add hg ci -m third echo echo "% cat .hg/store/fncache" cat .hg/store/fncache echo echo "% hg verify" hg verify echo echo "% rm .hg/store/fncache" rm .hg/store/fncache echo echo "% hg verify" hg verify # try non store repo encoding cd .. echo % non store repo hg --config format.usestore=False init foo cd foo mkdir tst.d echo foo > tst.d/foo hg ci -Amfoo find .hg | sort cd .. echo % non fncache repo hg --config format.usefncache=False init bar cd bar mkdir tst.d echo foo > tst.d/Foo hg ci -Amfoo find .hg | sort exit 0