aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 16:02:48 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 16:02:48 +0000
commit230ca5ffe52421e68e2434d8ff25454f3abd5331 (patch)
treef357baeb3e9e1bd1203c807a220215483f64f3bd
parentfabba1b93b0ae8e034a2ef3b9e0694ea01caad12 (diff)
downloadruby-230ca5ffe52421e68e2434d8ff25454f3abd5331.tar.gz
* ext/dl/lib/dl/cparser.rb (parse_ctype): add backwards compatibility
by supporting "uint" types in the c parser. [ruby-core:29750] * test/dl/test_cparser.rb: adding a test for "uint" changes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--ext/dl/lib/dl/cparser.rb2
-rw-r--r--test/dl/test_cparser.rb13
3 files changed, 20 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e1c154e5a7..cf7373967d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Jun 3 00:58:45 2010 Aaron Patterson <aaron@tenderlovemaking.com>
+
+ * ext/dl/lib/dl/cparser.rb (parse_ctype): add backwards compatibility
+ by supporting "uint" types in the c parser. [ruby-core:29750]
+ * test/dl/test_cparser.rb: adding a test for "uint" changes.
+
Wed Jun 2 11:40:02 2010 Yukihiro Matsumoto <matz@ruby-lang.org>
* compile.c (iseq_compile_each): should consider block on stack,
diff --git a/ext/dl/lib/dl/cparser.rb b/ext/dl/lib/dl/cparser.rb
index be23ab4567..210f953471 100644
--- a/ext/dl/lib/dl/cparser.rb
+++ b/ext/dl/lib/dl/cparser.rb
@@ -73,7 +73,7 @@ module DL
return -TYPE_SHORT
when "int"
return TYPE_INT
- when "unsigned int"
+ when "unsigned int", 'uint'
return -TYPE_INT
when "long"
return TYPE_LONG
diff --git a/test/dl/test_cparser.rb b/test/dl/test_cparser.rb
new file mode 100644
index 0000000000..3be727a759
--- /dev/null
+++ b/test/dl/test_cparser.rb
@@ -0,0 +1,13 @@
+require_relative 'test_base'
+
+require 'dl/cparser'
+
+module DL
+ class TestCParser < TestBase
+ include DL::CParser
+
+ def test_uint_ctype
+ assert_equal(-DL::TYPE_INT, parse_ctype('uint'))
+ end
+ end
+end