diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-06 21:33:24 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-06 21:33:24 +0000 |
| commit | 594089c8bdb7dd1bf98cf50e6d995a87a9b60d59 (patch) | |
| tree | 9cd7a3512c35fb2b1caea55e574a40aef3444d7b | |
| parent | 0d49cd47d67b04cafeb127408013b227c2d5c3a5 (diff) | |
| download | ruby-594089c8bdb7dd1bf98cf50e6d995a87a9b60d59.tar.gz ruby-594089c8bdb7dd1bf98cf50e6d995a87a9b60d59.tar.xz ruby-594089c8bdb7dd1bf98cf50e6d995a87a9b60d59.zip | |
* test/ruby/process.rb (test_popen_fork): skip a test which is
freeze in FreeBSD.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/ruby/test_process.rb | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Thu Aug 7 06:31:12 2008 NARUSE, Yui <naruse@ruby-lang.org> + + * test/ruby/process.rb (test_popen_fork): skip a test which is + freeze in FreeBSD. + Thu Aug 7 06:05:48 2008 NARUSE, Yui <naruse@ruby-lang.org> * config.guess: add powerpc-apple-haiku, i586-pc-haiku. diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index cd4410302..2f0777cc4 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -449,6 +449,7 @@ class TestProcess < Test::Unit::TestCase end def test_popen_fork + return if /freebsd/ =~ RUBY_PLATFORM IO.popen("-") {|io| if !io puts "fooo" |
