Skip to content

Commit c748ac9

Browse files
committed
* test/lib/envutil.rb: mkfifo command based File.mkfifo method
definition removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent b026a71 commit c748ac9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Sun Sep 20 02:18:10 2015 Tanaka Akira <akr@fsij.org>
2+
3+
* test/lib/envutil.rb: mkfifo command based File.mkfifo method
4+
definition removed.
5+
16
Fri Sep 18 20:11:11 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* file.c (rb_file_s_mkfifo): implement File.mkfifo.

test/lib/envutil.rb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
require "timeout"
44
require_relative "find_executable"
55

6-
def File.mkfifo(fn)
7-
ret = system("mkfifo", fn)
8-
raise NotImplementedError, "mkfifo fails" if !ret
9-
end unless File.respond_to?(:mkfifo) or /mswin|mingw|bccwin/ =~ RUBY_PLATFORM
10-
116
module EnvUtil
127
def rubybin
138
if ruby = ENV["RUBY"]

0 commit comments

Comments
 (0)