diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-01 15:29:43 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-01 15:29:43 +0000 |
commit | 637af54751be6cae06f9cafda9e6ba50b76c61eb (patch) | |
tree | 35f0a5b4fb6324e3695cef7149036b6fcd0e3d3e /test/logger/test_logger.rb | |
parent | 379c5c1e437821941802946fd370f0b84eb7363b (diff) |
* test/logger/test_logger.rb: unlinking file before close causes problem under
win32 box.
* lib/xsd/datatypes.rb(XSDFloat, XSDDouble): add +/- sign explicitly when
stringified and embedded into XML instance. Ruby's sprintf may format -0.0
as "0.0" (no minus sign) depending on underlying C sprintf implementation.
* test/xsd/test_xsd.rb, test/soap/test_basetype.rb: follow above change.
* test/soap/calc/*: give httpd config param "CGIInterpreter".
"/usr/bin/env ruby" thing does not work under non-Unix boxes.
* ChangeLog: corrected wrong DoW of my log entries...
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/logger/test_logger.rb')
-rw-r--r-- | test/logger/test_logger.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/logger/test_logger.rb b/test/logger/test_logger.rb index 9fdd88c27c..e92ec62b80 100644 --- a/test/logger/test_logger.rb +++ b/test/logger/test_logger.rb @@ -247,6 +247,7 @@ class TestLogDevice < Test::Unit::TestCase assert(logdev.dev.sync) assert_equal(filename, logdev.filename) ensure + logdev.close File.unlink(filename) end end |