From fe505c47c86e6ee6db45096913f81f29bf15c523 Mon Sep 17 00:00:00 2001 From: kosaki Date: Sat, 22 Jan 2011 15:46:11 +0000 Subject: [PATCH] * test/test_syslog.rb: Fix to make a lot of test failure if the platform doesn't support syslog. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/test_syslog.rb | 9 +++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c5540dc6e3..5383162367 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Jan 23 00:40:10 2011 KOSAKI Motohiro + + * test/test_syslog.rb: Fix to make a lot of test failure if + the platform doesn't support syslog. + Sat Jan 22 11:49:55 2011 Aaron Patterson * ext/psych/lib/psych/visitors/to_ruby.rb: fixing merge key support diff --git a/test/test_syslog.rb b/test/test_syslog.rb index e9fc375c90..fe865bdd18 100644 --- a/test/test_syslog.rb +++ b/test/test_syslog.rb @@ -6,7 +6,12 @@ # If in doubt, ask your admin. require 'test/unit' -require 'syslog' + +begin + require 'syslog' +rescue LoadError + # suppress error messages. +end class TestSyslog < Test::Unit::TestCase def test_new @@ -159,4 +164,4 @@ class TestSyslog < Test::Unit::TestCase assert_equal(format('<#%s: opened=false>', Syslog), Syslog.inspect) end -end +end if defined?(Syslog)