Bug #1308
closedbigdecimal debug code prevents tests from running
Description
=begin
Trying to get ruby's test suite running on windows (not passing, just running).
If compiled with -DEBUG set, the bigdecimal extension prints out a bunch of information (it really shoulnd't) and then asks for user input via getchar() calls. That needless to say stops the test suite in its track.
Patch attached. Note it also includes the bigdecimal patch from #1280.
=end
Files
Updated by ujihisa (Tatsuhiro Ujihisa) about 15 years ago
- Status changed from Open to Assigned
- Assignee set to usa (Usaku NAKAMURA)
=begin
=end
Updated by usa (Usaku NAKAMURA) about 15 years ago
- Status changed from Assigned to Open
- Assignee deleted (
usa (Usaku NAKAMURA))
=begin
this is the issue of bigdecimal itself.
but currently bigdecimal has no maintainer... :-(
=end
Updated by wanabe (_ wanabe) over 14 years ago
- Status changed from Open to Assigned
- Assignee set to mrkn (Kenta Murata)
- Target version changed from 1.9.1 to 1.9.2
=begin
=end
Updated by mame (Yusuke Endoh) over 14 years ago
=begin
Hi,
If compiled with -DEBUG set, the bigdecimal extension prints out a bunch of information (it really shoulnd't) and then asks for user input via getchar() calls.
Don't compile with -DEBUG set :-)
But, -DEBUG is too easy to conflict other projects.
How about replacing DEBUG with BIGDECIMAL_DEBUG?
Anyway, mrkn, please decide and fix.
Note it also includes the bigdecimal patch from #1280.
This is already fixed. Thanks.
--
Yusuke Endoh mame@tsg.ne.jp
=end
Updated by mrkn (Kenta Murata) over 14 years ago
=begin
I've committed the change to replace _DEBUG with BIGDECIMAL_DEBUG.
=end