Issue #3348 has been updated by mame (Yusuke Endoh). Target version changed from 2.0.0 to next minor ちゃんとチケット整理しなかったからまた直す機会を逸してしまった。すみません。 -- Yusuke Endoh <mame@tsg.ne.jp> ---------------------------------------- Bug #3348: rubyspec: Kernel.spawn redirects both STDERR and STDOUT to the given name ERROR https://bugs.ruby-lang.org/issues/3348#change-36505 Author: mame (Yusuke Endoh) Status: Assigned Priority: Low Assignee: akr (Akira Tanaka) Category: Target version: next minor ruby -v: 1.9 =begin 遠藤です。 spawn のリダイレクトの引数で :out => "foo" としたとき、ファイル foo が存在 しなければ作ってくれますが、[:out, :err] => "foo" だと作ってくれません。 ruby -e 'pid = spawn("echo", "foo", [:out, :err] => "foo"); Proces.wait pid' これは意図的でしょうか。 うっとうしいことに、rubyspec がこの挙動に依存して失敗するようになりました。 配列の中がすべて :out か :err だったら O_CREAT|O_TRUNC にするパッチです。 反対がなければコミットします。 diff --git a/process.c b/process.c index 9e52392..4ca6ed3 100644 --- a/process.c +++ b/process.c @@ -1342,7 +1342,19 @@ check_exec_redirect(VALUE key, VALUE val, VALUE options) key = check_exec_redirect_fd(key); if (FIXNUM_P(key) && (FIX2INT(key) == 1 || FIX2INT(key) == 2)) flags = INT2NUM(O_WRONLY|O_CREAT|O_TRUNC); - else + else if (TYPE(key) == T_ARRAY) { + int i; + for (i = 0; i < RARRAY_LEN(key); i++) { + VALUE v = RARRAY_PTR(key)[i]; + VALUE fd = check_exec_redirect_fd(v); + if (FIX2INT(fd) != 1 && FIX2INT(fd) != 2) break; + } + if (i == RARRAY_LEN(key)) + flags = INT2NUM(O_WRONLY|O_CREAT|O_TRUNC); + else + flags = INT2NUM(O_RDONLY); + } + else flags = INT2NUM(O_RDONLY); perm = INT2FIX(0644); param = hide_obj(rb_ary_new3(3, hide_obj(rb_str_dup(path)), -- Yusuke Endoh <mame@tsg.ne.jp> =end
on 2013-02-18 13:11
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.