Skip to content

Commit d2451f6

Browse files
committed
Removed Solaris conditions from optional and shared directories
1 parent 8e250c5 commit d2451f6

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

optional/capi/kernel_spec.rb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,8 @@ class CApiKernelSpecs::Exc < StandardError
242242
@s.rb_yield(1) { break 73 }.should == 73
243243
end
244244

245-
platform_is_not :"solaris2.10" do # NOTE: i386-pc-solaris2.10
246-
it "rb_yield through a callback to a block that breaks with a value returns the value" do
247-
@s.rb_yield_indirected(1) { break 73 }.should == 73
248-
end
245+
it "rb_yield through a callback to a block that breaks with a value returns the value" do
246+
@s.rb_yield_indirected(1) { break 73 }.should == 73
249247
end
250248

251249
it "rb_yield to block passed to enumerator" do

shared/file/sticky.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Dir.rmdir(@dir) if File.exist?(@dir)
99
end
1010

11-
platform_is_not :windows, :darwin, :freebsd, :netbsd, :openbsd, :solaris, :aix do
11+
platform_is_not :windows, :darwin, :freebsd, :netbsd, :openbsd, :aix do
1212
it "returns true if the named file has the sticky bit, otherwise false" do
1313
Dir.mkdir @dir, 01755
1414

0 commit comments

Comments
 (0)