hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit bb6ab5f316389aced18c682a389df66600dce948
parent c7a49e70a89323abc71a2e49f41aed887160d318
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 14 Mar 2021 16:30:34 -0400

gen-stdlib: enable io tests on ARM

Diffstat:
Mgen-stdlib | 17+++++------------
1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/gen-stdlib b/gen-stdlib @@ -319,18 +319,11 @@ io() { then gensrcs_io else - 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 \ - +test/copy.ha \ - +test/limit.ha \ - +test/stream.ha \ - +test/strings.ha - fi + gensrcs_io \ + +test/copy.ha \ + +test/limit.ha \ + +test/stream.ha \ + +test/strings.ha fi gen_ssa io strings }