From 6ee6740eea51ac29d37b4c71b83652c977cf5fa4 Mon Sep 17 00:00:00 2001 From: Lennart Augustsson Date: Wed, 29 Nov 2023 16:11:32 +0100 Subject: [PATCH] Comment out the FArith test for now. --- tests/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 8eaf57e6..a6a5eba4 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -29,7 +29,9 @@ test: $(TMHS) LocalPoly && $(EVAL) > LocalPoly.out && diff LocalPoly.ref LocalPoly.out $(TMHS) Rank2 && $(EVAL) > Rank2.out && diff Rank2.ref Rank2.out $(TMHS) Catch && $(EVAL) > Catch.out && diff Catch.ref Catch.out - $(TMHS) FArith && $(EVAL) > FArith.out && diff FArith.ref FArith.out +# The FArith tests are currently not prtable between 32 and 64 bits, +# since Double is really Float on 32 bit platforms. +# $(TMHS) FArith && $(EVAL) > FArith.out && diff FArith.ref FArith.out $(TMHS) Infix && $(EVAL) > Infix.out && diff Infix.ref Infix.out $(TMHS) Class && $(EVAL) > Class.out && diff Class.ref Class.out $(TMHS) Eq && $(EVAL) > Eq.out && diff Eq.ref Eq.out