ref: 6ee6740eea51ac29d37b4c71b83652c977cf5fa4
parent: 631e3e16b036bf63b321d1b22dcbb59ebf93fc15
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Wed Nov 29 11:11:32 EST 2023
Comment out the FArith test for now.
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -29,7 +29,9 @@
$(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
--
⑨