summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ctest.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/ctest.h')
-rw-r--r--crawl-ref/source/ctest.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/crawl-ref/source/ctest.h b/crawl-ref/source/ctest.h
new file mode 100644
index 0000000000..0cc1d1ad55
--- /dev/null
+++ b/crawl-ref/source/ctest.h
@@ -0,0 +1,15 @@
+#ifndef CTEST_H
+#define CTEST_H
+
+#include "AppHdr.h"
+
+#ifdef DEBUG_DIAGNOSTICS
+
+namespace crawl_tests
+{
+ void run_tests(bool exit_on_complete);
+}
+
+#endif
+
+#endif