1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-13 18:31:31 -07:00

Add tip about running the same test case many times.

Copied from Perforce
 Change: 185420
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-04-10 12:22:12 +01:00
parent 5d25840cd5
commit 7a520bcfca

View file

@ -13,6 +13,14 @@
# Usage::
#
# testrun.sh DIR ( SUITE | CASE1 CASE2 [...] )
#
# You can use this feature to run the same test many times, to get
# lots of random coverage. For example::
#
# yes amcss | head -100 | xargs tool/testrun.sh code/xc/Debug
#
# This runs the AMC stress test 100 times from the code/xc/Debug
# directory, reporting all failures.
# Make a temporary output directory for the test logs.
LOGDIR=$(mktemp -d /tmp/mps.log.XXXXXX)