summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/test
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-09-07 09:57:45 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-09-09 01:08:26 +0200
commitbcdeb4edeb61700007e605e0cfe04437d81fa4cf (patch)
tree961c91448dc7077cbb200c4a2424794a79e3cb44 /crawl-ref/source/test
parent6b5b01df893d3cd3903824266e0fc47b473df0b8 (diff)
downloadcrawl-ref-bcdeb4edeb61700007e605e0cfe04437d81fa4cf.tar.gz
crawl-ref-bcdeb4edeb61700007e605e0cfe04437d81fa4cf.zip
A canned test for notoriously prone to breakage tentacle death.
A yet another crasher has just been cherry-picked to 0.11 without anyone noticing. (This is just a test case, not a fix.)
Diffstat (limited to 'crawl-ref/source/test')
-rwxr-xr-xcrawl-ref/source/test/stress/run5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/test/stress/run b/crawl-ref/source/test/stress/run
index 1efa228091..1fb1ff8191 100755
--- a/crawl-ref/source/test/stress/run
+++ b/crawl-ref/source/test/stress/run
@@ -24,6 +24,9 @@ run_one()
6|arena_miscasts)
$CRAWL -arena 'miscasts 5 pandemonium lord v 20 20-headed hydra delay:0 t:10'
;;
+ 7|kraken)
+ $CRAWL -arena 'kraken v spectral kraken arena:small_deep_pool delay:0 t:99'
+ ;;
*)
echo "No such test."
exit 1
@@ -32,7 +35,7 @@ run_one()
if [ "$*" = "all" ]
then
- for x in 1 2 3 4 5 6; do run_one "$x";done
+ for x in 1 2 3 4 5 6 7; do run_one "$x";done
exit $?
fi