From 0a8fbef996fe2b104c4eb3a978b4decf6292551e Mon Sep 17 00:00:00 2001 From: Saki Takamachi Date: Sat, 18 May 2024 07:08:39 +0900 Subject: [PATCH] Added test --- ext/standard/tests/array/gh14140.phpt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ext/standard/tests/array/gh14140.phpt diff --git a/ext/standard/tests/array/gh14140.phpt b/ext/standard/tests/array/gh14140.phpt new file mode 100644 index 00000000000..2bc17a236a7 --- /dev/null +++ b/ext/standard/tests/array/gh14140.phpt @@ -0,0 +1,21 @@ +--TEST-- +GH-14140: Floating point bug in range operation on Apple Silicon hardware +--FILE-- + +--EXPECT-- +Array +( + [0] => -0.03 + [1] => -0.02 + [2] => -0.01 + [3] => 0 + [4] => 0.01 + [5] => 0.02 + [6] => 0.03 +)