summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ctest.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-05 05:58:45 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-05 07:03:13 +0100
commit771ae3aa73a87a4d85e0b8acddeffc3368584694 (patch)
tree1ed0921e97a6bc8e840a5cdac7ceaba843763e4a /crawl-ref/source/ctest.h
parenta64525a6adf4aed6bc899ed25b889a5881201a65 (diff)
downloadcrawl-ref-771ae3aa73a87a4d85e0b8acddeffc3368584694.tar.gz
crawl-ref-771ae3aa73a87a4d85e0b8acddeffc3368584694.zip
Simplify a #define logic.
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 0d552d4769..b59faf1473 100644
--- a/crawl-ref/source/ctest.h
+++ b/crawl-ref/source/ctest.h
@@ -1,7 +1,7 @@
#ifndef CTEST_H
#define CTEST_H
-#if defined(DEBUG_DIAGNOSTICS) || defined(DEBUG_TESTS)
+#ifdef DEBUG_TESTS
NORETURN void run_tests();
#endif