Skip to content

Commit afd7d5b

Browse files
andrykonchineregon
authored andcommitted
Skip a new spec for Marshal#dump and Float that fails on i686
1 parent d7a5ad2 commit afd7d5b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

spec/ruby/core/marshal/dump_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,10 @@ def _dump(level)
286286
].should be_computed_by(:dump)
287287
end
288288

289-
it "uses object links for objects repeatedly dumped" do
290-
Marshal.dump([0.0, 0.0]).should == "\x04\b[\af\x060@\x06" # @\x06 is a link to the float value
289+
quarantine! do # fails on i686 with 'Expected "\x04\b[\af\x060f\x060" == "\x04\b[\af\x060@\x06" to be truthy but was false'
290+
it "uses object links for objects repeatedly dumped" do
291+
Marshal.dump([0.0, 0.0]).should == "\x04\b[\af\x060@\x06" # @\x06 is a link to the float value
292+
end
291293
end
292294
end
293295

0 commit comments

Comments
 (0)