зеркало из https://github.com/github/ruby.git
spec/ruby/core/process/exec_spec.rb: remove a guard for openbsd
openbsd current seems to behave the same as other OSs. https://rubyci.org/logs/rubyci.s3.amazonaws.com/openbsd-current/ruby-master/log/20200305T063005Z.fail.html.gz
This commit is contained in:
Родитель
7d05f98a84
Коммит
17d5efa4fe
|
@ -29,17 +29,9 @@ describe "Process.exec" do
|
|||
end
|
||||
end
|
||||
|
||||
platform_is_not :openbsd do
|
||||
it "raises Errno::EACCES when passed a directory" do
|
||||
-> { Process.exec File.dirname(__FILE__) }.should raise_error(Errno::EACCES)
|
||||
end
|
||||
end
|
||||
|
||||
platform_is :openbsd do
|
||||
it "raises Errno::EISDIR when passed a directory" do
|
||||
-> { Process.exec File.dirname(__FILE__) }.should raise_error(Errno::EISDIR)
|
||||
end
|
||||
end
|
||||
|
||||
it "runs the specified command, replacing current process" do
|
||||
ruby_exe('Process.exec "echo hello"; puts "fail"', escape: true).should == "hello\n"
|
||||
|
|
Загрузка…
Ссылка в новой задаче