summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-05-15 12:32:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-05-15 12:32:18 -0400
commitdb540b746b0eb93fa76f8bec0bdb63dd9ea5a5e7 (patch)
tree20cdff0a2846016cb114dc9d857d659d65272c92 /Makefile
parent3e15a8a791d15c166557fa18f240639891a8754f (diff)
don't optimise test suite
This avoids needing to adjust -fspec-constr-count, which continues to need high values (> 8 now) when building the test suite.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01a1a6a54..286c3a6e5 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ install: all
fi
test: $(bins)
- if ! $(GHCMAKE) test; then \
+ if ! $(GHCMAKE) -O0 test; then \
echo "** not running test suite" >&2; \
else \
./test; \