[ruby-oci8-commit] [413] trunk/ruby-oci8/test: fix ChangeLog for the unexpectedly committed changes.
nobody at rubyforge.org
nobody at rubyforge.org
Tue Sep 7 10:17:54 EDT 2010
Revision: 413
Author: kubo
Date: 2010-09-07 10:17:54 -0400 (Tue, 07 Sep 2010)
Log Message:
-----------
fix ChangeLog for the unexpectedly committed changes.
disable test_array_insert1 only on rubinius.
Modified Paths:
--------------
branches/ruby-oci8-2.0/ChangeLog
branches/ruby-oci8-2.0/test/test_array_dml.rb
trunk/ruby-oci8/ChangeLog
trunk/ruby-oci8/test/test_array_dml.rb
Modified: branches/ruby-oci8-2.0/ChangeLog
===================================================================
--- branches/ruby-oci8-2.0/ChangeLog 2010-09-07 13:45:17 UTC (rev 412)
+++ branches/ruby-oci8-2.0/ChangeLog 2010-09-07 14:17:54 UTC (rev 413)
@@ -3,6 +3,8 @@
rb_set_end_proc() when it isn't available.
* ext/oci8/extconf.rb, lib/oci8.rb.in: add RUBY_ENGINE to
the C extension library name when RUBY_ENGINE is not "ruby."
+ * test/test_array_dml.rb: skip test_array_insert1 on rubinius.
+ This will be enabled after the rubinius issue #445 is fixed.
2010-09-05 KUBO Takehiro <kubo at jiubao.org>
* ext/oci8/extconf.rb, ext/oci8/oci8.h, ext/oci8/oci8lib.c,
Modified: branches/ruby-oci8-2.0/test/test_array_dml.rb
===================================================================
--- branches/ruby-oci8-2.0/test/test_array_dml.rb 2010-09-07 13:45:17 UTC (rev 412)
+++ branches/ruby-oci8-2.0/test/test_array_dml.rb 2010-09-07 14:17:54 UTC (rev 413)
@@ -13,7 +13,9 @@
# test inserting arrays with different data types
# including char, varchar2, number, date and so on
- def _test_array_insert1
+ def test_array_insert1
+ # skip this test until the rubinius issue #445 is fixed.
+ return if defined? RUBY_ENGINE and RUBY_ENGINE == 'rbx'
drop_table('test_table')
sql = <<-EOS
CREATE TABLE test_table
Modified: trunk/ruby-oci8/ChangeLog
===================================================================
--- trunk/ruby-oci8/ChangeLog 2010-09-07 13:45:17 UTC (rev 412)
+++ trunk/ruby-oci8/ChangeLog 2010-09-07 14:17:54 UTC (rev 413)
@@ -3,6 +3,14 @@
rb_set_end_proc() when it isn't available.
* ext/oci8/extconf.rb, lib/oci8.rb.in: add RUBY_ENGINE to
the C extension library name when RUBY_ENGINE is not "ruby."
+ * ext/oci8/oci8.c: fix for ruby 1.8.
+ * test/test_clob.rb: change a temporarily used table name for test
+ from 'test_clob' to 'test_table.'
+ * test/test_metadata.rb: delete ruby 1.9 feature to work on ruby 1.8.
+ * test/config.rb: add a support function 'drop_type' for future test
+ cases.
+ * test/test_array_dml.rb: skip test_array_insert1 on rubinius.
+ This will be enabled after the rubinius issue #445 is fixed.
2010-09-05 KUBO Takehiro <kubo at jiubao.org>
* ext/oci8/extconf.rb, ext/oci8/oci8.h, ext/oci8/oci8lib.c,
Modified: trunk/ruby-oci8/test/test_array_dml.rb
===================================================================
--- trunk/ruby-oci8/test/test_array_dml.rb 2010-09-07 13:45:17 UTC (rev 412)
+++ trunk/ruby-oci8/test/test_array_dml.rb 2010-09-07 14:17:54 UTC (rev 413)
@@ -13,7 +13,9 @@
# test inserting arrays with different data types
# including char, varchar2, number, date and so on
- def _test_array_insert1
+ def test_array_insert1
+ # skip this test until the rubinius issue #445 is fixed.
+ return if defined? RUBY_ENGINE and RUBY_ENGINE == 'rbx'
drop_table('test_table')
sql = <<-EOS
CREATE TABLE test_table
More information about the ruby-oci8-commit
mailing list