Actions
Backport #3602
closedstdout not set in rubyw.exe, causes silent failures
Status:
Closed
Assignee:
Description
=begin
Attempting to write anything to stdout will cause the program to silently crash when executed with rubyw.exe on windows.
The problem is trivial to duplicate:
Source:
f = File.new("test.txt", "w")
f.write("failure")
f.close
puts "Hello, World"
f = File.new("test.txt", "w")
f.write("success")
f.close
Execution output:
C:>ruby test.rb
Hello, World
C:>type test.txt
success
C:>rubyw test.rb
C:>type test.txt
failure
-----END OUTPUT----------------
This bug is not present in the 1.9.1 build of ruby for windows. A workaround is available, by providing a valid file descriptor for stdout, e.g. $stdout = File.new("stdout.txt", "w").
=end
Actions
Like0
Like0Like0Like0Like0Like0Like0