commit 4610b31fd38e17ea74c44bc962899c523508aea7 parent aff37f551cc8f9a5c1189deb2275dea09c37d8c1 Author: Drew DeVault <sir@cmpwn.com> Date: Sun, 7 Feb 2021 08:58:06 -0500 stdlib: temporarily disable io test Diffstat:
M | gen-stdlib | | | 11 | +++++++++-- |
M | mk/stdlib.mk | | | 3 | +-- |
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/gen-stdlib b/gen-stdlib @@ -148,8 +148,15 @@ io() { then gensrcs_io else - gensrcs_io \ - copy+test.ha + if [ "$(uname -m)" = "aarch64" ] + then + # Test is broken on aarch64, temporarily disabled + # https://todo.sr.ht/~sircmpwn/hare-v2/196 + gensrcs_io + else + gensrcs_io \ + copy+test.ha + fi fi gen_ssa io } diff --git a/mk/stdlib.mk b/mk/stdlib.mk @@ -339,8 +339,7 @@ testlib_io_srcs= \ $(STDLIB)/io/types.ha \ $(STDLIB)/io/copy.ha \ $(STDLIB)/io/println.ha \ - $(STDLIB)/io/stream.ha \ - $(STDLIB)/io/copy+test.ha + $(STDLIB)/io/stream.ha $(TESTCACHE)/io/io.ssa: $(testlib_io_srcs) $(testlib_rt) @printf 'HAREC \t$@\n'