aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--test/ruby/test_process.rb4
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 471b1311ba..7f1fb122e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
+Fri Apr 10 08:00:17 2015 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * test/ruby/test_process.rb: unfortunately, windows is not POSIX...
+ cygwin has mkfifo command, but it does not affect system-wide.
+
Fri Apr 10 02:18:53 2015 Tanaka Akira <akr@fsij.org>
* test/ruby/test_process.rb: Use mkfifo command instead of mknod
- command to create a named file. mkfifo commandis defined by POSIX.
+ command to create a named file. mkfifo command is defined by POSIX.
Fri Apr 10 01:29:05 2015 Tanaka Akira <akr@fsij.org>
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 8f62cbe0c2..bcbd7e97d6 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -562,7 +562,7 @@ class TestProcess < Test::Unit::TestCase
with_tmpchdir {|d|
system("mkfifo fifo")
return if !$?.success?
- assert(FileTest.pipe?("fifo"))
+ assert(FileTest.pipe?("fifo"), "should be pipe")
t1 = Thread.new {
system(*ECHO["output to fifo"], :out=>"fifo")
}
@@ -572,7 +572,7 @@ class TestProcess < Test::Unit::TestCase
v1, v2 = assert_join_threads([t1, t2])
assert_equal("output to fifo\n", v2)
}
- end
+ end unless windows? # does not support fifo
def test_execopts_redirect_pipe
with_pipe {|r1, w1|