Skip to content

Commit 0db324c

Browse files
IanButterworthKristofferC
authored andcommitted
mark failing double counting test as broken on i686-linux (#54896)
Introduced by #54606 See #54606 (comment) Issue #54895 (cherry picked from commit 5da1f06)
1 parent 9cf8b19 commit 0db324c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/misc.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,8 @@ struct Z53061
585585
end
586586
let z = Z53061[Z53061(S53061(rand(), (rand(),rand())), 0) for _ in 1:10^4]
587587
@test allequal(summarysize(z) for i in 1:10)
588-
@test abs(summarysize(z) - 640000)/640000 <= 0.01
588+
# broken on i868 linux. issue #54895
589+
@test abs(summarysize(z) - 640000)/640000 <= 0.01 broken = Sys.WORD_SIZE == 32 && Sys.islinux()
589590
end
590591

591592
## test conversion from UTF-8 to UTF-16 (for Windows APIs)

0 commit comments

Comments
 (0)