Skip to content

Commit 5da1f06

Browse files
mark failing double counting test as broken on i686-linux (#54896)
Introduced by #54606 See #54606 (comment) Issue #54895
1 parent 2bf4750 commit 5da1f06

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
@@ -587,7 +587,8 @@ struct Z53061
587587
end
588588
let z = Z53061[Z53061(S53061(rand(), (rand(),rand())), 0) for _ in 1:10^4]
589589
@test allequal(summarysize(z) for i in 1:10)
590-
@test abs(summarysize(z) - 640000)/640000 <= 0.01
590+
# broken on i868 linux. issue #54895
591+
@test abs(summarysize(z) - 640000)/640000 <= 0.01 broken = Sys.WORD_SIZE == 32 && Sys.islinux()
591592
end
592593

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

0 commit comments

Comments
 (0)