Skip to content

Commit d5b8c89

Browse files
committed
tests: disable a floating point test for arm
1 parent 26b9ace commit d5b8c89

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: test/stdlib/FloatingPoint.swift.gyb

+5
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,9 @@ FloatingPoint.test("Double.nextUp, .nextDown")
574574
expectBitwiseEqual(-prev, (-succ).nextUp)
575575
}
576576

577+
// FIXME: This test is failing on armv4: SR-7159
578+
#if arch(i386) || arch(x86_64)
579+
577580
%for Self in ['Float', 'Double']:
578581
FloatingPoint.test("${Self}.nextUp, .nextDown/nan") {
579582
let x = ${Self}.nan
@@ -584,6 +587,8 @@ FloatingPoint.test("${Self}.nextUp, .nextDown/nan") {
584587
}
585588
%end
586589

590+
#endif
591+
587592
#if arch(i386) || arch(x86_64)
588593

589594
FloatingPoint.test("Float80/ExpressibleByIntegerLiteral") {

0 commit comments

Comments
 (0)