[llvm-commits] [test-suite] r66379 - /test-suite/trunk/Makefile.rules

Duncan Sands baldrick at free.fr
Sun Mar 8 05:56:20 PDT 2009


Author: baldrick
Date: Sun Mar  8 07:56:20 2009
New Revision: 66379

URL: http://llvm.org/viewvc/llvm-project?rev=66379&view=rev
Log:
Have the testsuite use the right build if configured
with -enable-expensive-checks.

Modified:
    test-suite/trunk/Makefile.rules

Modified: test-suite/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.rules?rev=66379&r1=66378&r2=66379&view=diff

==============================================================================
--- test-suite/trunk/Makefile.rules (original)
+++ test-suite/trunk/Makefile.rules Sun Mar  8 07:56:20 2009
@@ -154,6 +154,13 @@
   CONFIGURATION := $(CONFIGURATION)-Asserts
 endif
 
+# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
+# configured), then adjust the CONFIGURATION name appropriately
+# (to match LLVM makefiles)
+ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
+  CONFIGURATION := $(CONFIGURATION)+Checks
+endif
+
 #
 # Enable this for profiling support with 'gprof'
 # This automatically enables optimized builds.





More information about the llvm-commits mailing list