sapling/tests/test-profile.t

32 lines
720 B
Perl
Raw Normal View History

2010-09-26 22:44:49 +04:00
test --time
2012-06-12 16:18:18 +04:00
$ hg --time help -q help 2>&1 | grep time > /dev/null
2010-09-26 22:44:49 +04:00
$ hg init a
$ cd a
#if lsprof
2010-09-26 22:44:49 +04:00
test --profile
$ hg --profile st 2>../out
$ grep CallCount ../out > /dev/null || cat ../out
$ hg --profile --config profiling.output=../out st
$ grep CallCount ../out > /dev/null || cat ../out
$ hg --profile --config profiling.format=text st 2>../out
$ grep CallCount ../out > /dev/null || cat ../out
$ echo "[profiling]" >> $HGRCPATH
$ echo "format=kcachegrind" >> $HGRCPATH
$ hg --profile st 2>../out
$ grep 'events: Ticks' ../out > /dev/null || cat ../out
$ hg --profile --config profiling.output=../out st
$ grep 'events: Ticks' ../out > /dev/null || cat ../out
#endif
$ cd ..