summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Shao <terrorjack@type.dance>2023-03-30 02:15:07 +0000
committerCheng Shao <terrorjack@type.dance>2023-03-30 18:42:56 +0000
commit4a24dbbe2cb4ec5311af01321d1721e8964d0672 (patch)
tree9a14a0efa216f9a9c553c4786290aba2c12f2308
parent20432d16d9a367528f59858b1acad2fae539e993 (diff)
downloadhaskell-4a24dbbe2cb4ec5311af01321d1721e8964d0672.tar.gz
ci: fix lint-testsuite job
The list_broken make target will transitively depend on the calibrate.out target, which used STAGE1_GHC instead of TEST_HC. It really should be TEST_HC since that's what get passed in the gitlab CI config.
-rw-r--r--testsuite/timeout/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/testsuite/timeout/Makefile b/testsuite/timeout/Makefile
index 9626eaea19..388a87b030 100644
--- a/testsuite/timeout/Makefile
+++ b/testsuite/timeout/Makefile
@@ -51,11 +51,7 @@ boot all :: calibrate.out $(TIMEOUT_PROGRAM)
calibrate.out:
$(RM) -f TimeMe.o TimeMe.hi TimeMe TimeMe.exe
- $(PYTHON) calibrate '$(STAGE1_GHC)' > $@
-# We use stage 1 to do the calibration, as stage 2 may not exist.
-# This isn't necessarily the compiler we'll be running the testsuite
-# with, but it's really the performance of the machine that we're
-# interested in
+ $(PYTHON) calibrate '$(TEST_HC)' > $@
endif
endif
@@ -66,4 +62,3 @@ clean distclean maintainer-clean:
$(RM) -rf install-inplace
$(RM) -f calibrate.out
$(RM) -f Setup Setup.exe Setup.hi Setup.o
-