Skip to content

Commit

Permalink
mark failing double counting test as broken on i686-linux (#54896)
Browse files Browse the repository at this point in the history
Introduced by #54606
See
#54606 (comment)

Issue #54895
  • Loading branch information
IanButterworth authored Jun 23, 2024
1 parent 2bf4750 commit 5da1f06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/misc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,8 @@ struct Z53061
end
let z = Z53061[Z53061(S53061(rand(), (rand(),rand())), 0) for _ in 1:10^4]
@test allequal(summarysize(z) for i in 1:10)
@test abs(summarysize(z) - 640000)/640000 <= 0.01
# broken on i868 linux. issue #54895
@test abs(summarysize(z) - 640000)/640000 <= 0.01 broken = Sys.WORD_SIZE == 32 && Sys.islinux()
end

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

2 comments on commit 5da1f06

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The package evaluation job you requested has completed - possible new issues were detected.
The full report is available.

Please sign in to comment.