summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ctest.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-27 22:58:55 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-10-28 00:33:20 +0100
commit3660ee2c86d460bba3822dc9e117796b0ba59aa0 (patch)
treed359ac487aee61eb5e0cb3469913418190be9dae /crawl-ref/source/ctest.h
parent5ae78977690c8023545d5ae33d59543158e56fb5 (diff)
downloadcrawl-ref-3660ee2c86d460bba3822dc9e117796b0ba59aa0.tar.gz
crawl-ref-3660ee2c86d460bba3822dc9e117796b0ba59aa0.zip
Make -test NORETURN and easier to valgrind.
Diffstat (limited to 'crawl-ref/source/ctest.h')
-rw-r--r--crawl-ref/source/ctest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ctest.h b/crawl-ref/source/ctest.h
index 1a74c7f337..0d552d4769 100644
--- a/crawl-ref/source/ctest.h
+++ b/crawl-ref/source/ctest.h
@@ -2,7 +2,7 @@
#define CTEST_H
#if defined(DEBUG_DIAGNOSTICS) || defined(DEBUG_TESTS)
-bool run_tests(bool exit_on_complete);
+NORETURN void run_tests();
#endif
#endif