summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--test/ruby/test_process.rb32
2 files changed, 30 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 64b3a963b5..77b2a73717 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun May 11 17:58:45 2008 Tanaka Akira <akr@fsij.org>
+
+ * test/ruby/test_process.rb (TestProcess#with_stdin): defined.
+ (TestProcess#test_argv0_noarg): don't use redirect_fds.
+ [ruby-dev:34647]
+
Sun May 11 17:57:36 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (MINIRUBY): should not include extension library path.
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index caa5c0f349..183bf10b83 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -799,27 +799,43 @@ class TestProcess < Test::Unit::TestCase
}
end
+ def with_stdin(filename)
+ open(filename) {|f|
+ begin
+ old = STDIN.dup
+ begin
+ STDIN.reopen(filename)
+ yield
+ ensure
+ STDIN.reopen(old)
+ end
+ ensure
+ old.close
+ end
+ }
+ end
+
def test_argv0_noarg
with_tmpchdir {|d|
open("t", "w") {|f| f.print "exit true" }
open("f", "w") {|f| f.print "exit false" }
- assert_equal(true, system([RUBY, "qaz"], STDIN=>"t"))
- assert_equal(false, system([RUBY, "wsx"], STDIN=>"f"))
+ with_stdin("t") { assert_equal(true, system([RUBY, "qaz"])) }
+ with_stdin("f") { assert_equal(false, system([RUBY, "wsx"])) }
- Process.wait spawn([RUBY, "edc"], STDIN=>"t")
+ with_stdin("t") { Process.wait spawn([RUBY, "edc"]) }
assert($?.success?)
- Process.wait spawn([RUBY, "rfv"], STDIN=>"f")
+ with_stdin("f") { Process.wait spawn([RUBY, "rfv"]) }
assert(!$?.success?)
- IO.popen([[RUBY, "tgb"], STDIN=>"t"]) {|io| assert_equal("", io.read) }
+ with_stdin("t") { IO.popen([[RUBY, "tgb"]]) {|io| assert_equal("", io.read) } }
assert($?.success?)
- IO.popen([[RUBY, "yhn"], STDIN=>"f"]) {|io| assert_equal("", io.read) }
+ with_stdin("f") { IO.popen([[RUBY, "yhn"]]) {|io| assert_equal("", io.read) } }
assert(!$?.success?)
- status = run_in_child "exec([#{RUBY.dump}, 'ujm'], STDIN=>'t')"
+ status = run_in_child "STDIN.reopen('t'); exec([#{RUBY.dump}, 'ujm'])"
assert(status.success?)
- status = run_in_child "exec([#{RUBY.dump}, 'ik,'], STDIN=>'f')"
+ status = run_in_child "STDIN.reopen('f'); exec([#{RUBY.dump}, 'ik,'])"
assert(!status.success?)
}
end