From 27c812572cca68a61a9d0450dabcfb209e3bae7c Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Mon, 2 Nov 2009 22:52:32 -0800 Subject: Allow running tests with DEBUG_TESTS Automatic/unit tests can now be run if you define the macro DEBUG_TESTS, rather than only having the option of having to define DEBUG_DIAGNOSTICS. --- crawl-ref/source/ctest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/ctest.cc') diff --git a/crawl-ref/source/ctest.cc b/crawl-ref/source/ctest.cc index a15b973f56..fee7a41003 100644 --- a/crawl-ref/source/ctest.cc +++ b/crawl-ref/source/ctest.cc @@ -14,7 +14,7 @@ #include "AppHdr.h" -#if DEBUG_DIAGNOSTICS +#if DEBUG_DIAGNOSTICS || DEBUG_TESTS #include "clua.h" #include "dlua.h" -- cgit v1.2.3-54-g00ecf