Skip to content

Commit 0093714

Browse files
committed
Correct MacOS expected failure rates order.
1 parent 82d0b62 commit 0093714

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/test_ibeta.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,6 @@ void expected_results()
120120
// *very* extreme due to the increased exponent range
121121
// of 80-bit long doubles. Also effect Mac OS.
122122
//
123-
add_expected_result(
124-
"[^|]*", // compiler
125-
"[^|]*", // stdlib
126-
"linux|Mac OS", // platform
127-
largest_type, // test type(s)
128-
"(?i).*large.*", // test data group
129-
".*", 200000, 10000); // test function
130123
add_expected_result(
131124
"[^|]*", // compiler
132125
"[^|]*", // stdlib
@@ -141,6 +134,13 @@ void expected_results()
141134
largest_type, // test type(s)
142135
"(?i).*Asymptotically Large.*", // test data group
143136
".*", 900000000, 80000000); // test function
137+
add_expected_result(
138+
"[^|]*", // compiler
139+
"[^|]*", // stdlib
140+
"linux|Mac OS", // platform
141+
largest_type, // test type(s)
142+
"(?i).*large.*", // test data group
143+
".*", 200000, 10000); // test function
144144
if (std::numeric_limits<long double>::digits == 64)
145145
{
146146
// 80-bit long double, errors spill over:

0 commit comments

Comments
 (0)