summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Sullivan <zachsully@gmail.com>2019-06-07 15:50:41 -0700
committerSebastian Graf <sebastian.graf@kit.edu>2019-11-04 10:59:18 +0100
commit62dd849f4131f35ff3d86b4ccc4a857bae94b10c (patch)
treea31ef12239d21a85291c34a8c19ade2deb957f0b
parent8a0322ab173d4b55046ef0c4b76cf84cfa227fdc (diff)
downloadhaskell-62dd849f4131f35ff3d86b4ccc4a857bae94b10c.tar.gz
add logging to the eta-tests
-rw-r--r--eta-tests/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/eta-tests/Makefile b/eta-tests/Makefile
index f9665ec063..e5ff03c1ed 100644
--- a/eta-tests/Makefile
+++ b/eta-tests/Makefile
@@ -1,9 +1,9 @@
EXTRA_HC_OPTS=
-all: differentSat.bin zipLocal.bin zipWit2.bin zipWit3.bin zipWithPartial.bin
+all: differentSat.bin zipLocal.bin zipWit2.bin zipWit3.bin zipWithPartial.bin fac.bin
%.bin: %.hs
- ../inplace/bin/ghc-stage2 $(EXTRA_HC_OPTS) -O2 -o $@ $<
+ ../inplace/bin/ghc-stage2 $(EXTRA_HC_OPTS) -dverbose-core2core -O2 -feta-arity -o $@ $< 2>&1 | tee $@.log
clean:
- rm -rf *.hi *.o *.bin *~
+ rm -rf *.hi *.o *.bin *~ *.log