ruby2c 1.0.0.9 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data/History.txt +78 -53
- data/README.txt +1 -1
- data/Rakefile +2 -0
- data/lib/crewriter.rb +35 -23
- data/lib/r2cenvironment.rb +3 -3
- data/lib/rewriter.rb +6 -2
- data/lib/ruby_to_ansi_c.rb +18 -18
- data/lib/ruby_to_ruby_c.rb +3 -3
- data/lib/type.rb +3 -3
- data/lib/type_checker.rb +101 -99
- data/lib/typed_sexp.rb +49 -25
- data/test/r2ctestcase.rb +321 -288
- data/test/test_crewriter.rb +127 -128
- data/test/test_extras.rb +4 -4
- data/test/test_function_table.rb +23 -23
- data/test/test_function_type.rb +39 -40
- data/test/test_handle.rb +2 -2
- data/test/test_r2cenvironment.rb +38 -38
- data/test/test_ruby_to_ansi_c.rb +58 -58
- data/test/test_ruby_to_ruby_c.rb +26 -26
- data/test/test_type.rb +38 -38
- data/test/test_type_checker.rb +165 -165
- data/test/test_typed_sexp.rb +62 -54
- data.tar.gz.sig +2 -1
- metadata +101 -153
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
data/test/test_type.rb
CHANGED
@@ -3,16 +3,16 @@
|
|
3
3
|
$TESTING = true
|
4
4
|
|
5
5
|
require 'minitest/autorun' if $0 == __FILE__
|
6
|
-
require 'minitest/
|
6
|
+
require 'minitest/test'
|
7
7
|
require 'type'
|
8
8
|
require 'sexp_processor' # for deep clone FIX ?
|
9
9
|
|
10
|
-
class
|
10
|
+
class TestCType < Minitest::Test
|
11
11
|
def setup
|
12
|
-
@unknown =
|
13
|
-
@unknown_list =
|
14
|
-
@long =
|
15
|
-
@long_list =
|
12
|
+
@unknown = CType.unknown
|
13
|
+
@unknown_list = CType.unknown_list
|
14
|
+
@long = CType.long
|
15
|
+
@long_list = CType.new(:long, true)
|
16
16
|
end
|
17
17
|
|
18
18
|
def test_function?
|
@@ -20,7 +20,7 @@ class TestType < MiniTest::Unit::TestCase
|
|
20
20
|
assert ! @long_list.function?
|
21
21
|
assert ! @unknown.function?
|
22
22
|
assert ! @unknown_list.function?
|
23
|
-
assert
|
23
|
+
assert CType.function(CType.str, [CType.str], CType.str).function?
|
24
24
|
end
|
25
25
|
|
26
26
|
def test_list
|
@@ -29,8 +29,8 @@ class TestType < MiniTest::Unit::TestCase
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def test_list=
|
32
|
-
long =
|
33
|
-
long_list =
|
32
|
+
long = CType.long.deep_clone
|
33
|
+
long_list = CType.long_list.deep_clone
|
34
34
|
|
35
35
|
long.list = true
|
36
36
|
long_list.list = false
|
@@ -45,36 +45,36 @@ class TestType < MiniTest::Unit::TestCase
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def test_type_good
|
48
|
-
file =
|
49
|
-
assert_kind_of
|
48
|
+
file = CType.file
|
49
|
+
assert_kind_of CType, file
|
50
50
|
assert_equal :file, file.type.contents
|
51
51
|
end
|
52
52
|
|
53
53
|
def test_type_bad
|
54
54
|
assert_raises(RuntimeError) do
|
55
|
-
|
55
|
+
CType.blahblah
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
def test_type=
|
60
|
-
long =
|
60
|
+
long = CType.long.deep_clone
|
61
61
|
long.type = "something"
|
62
62
|
assert_equal "something", long.type
|
63
63
|
end
|
64
64
|
|
65
65
|
def test_unknown_types
|
66
66
|
assert_raises(RuntimeError) do
|
67
|
-
|
67
|
+
CType.new(:some_made_up_type)
|
68
68
|
end
|
69
69
|
|
70
70
|
assert_raises(RuntimeError) do
|
71
|
-
|
71
|
+
CType.some_made_up_type
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
75
75
|
def test_function
|
76
|
-
|
77
|
-
|
76
|
+
skip "actually TEST something here"
|
77
|
+
CType.function([CType.unknown], CType.unknown)
|
78
78
|
end
|
79
79
|
|
80
80
|
def test_list_type
|
@@ -82,20 +82,20 @@ class TestType < MiniTest::Unit::TestCase
|
|
82
82
|
end
|
83
83
|
|
84
84
|
def test_equals
|
85
|
-
type =
|
85
|
+
type = CType.long
|
86
86
|
refute_equal @unknown, type
|
87
87
|
assert_equal @long, type
|
88
88
|
refute_equal @long_list, type
|
89
89
|
end
|
90
90
|
|
91
91
|
def test_hash
|
92
|
-
long1 =
|
93
|
-
long2 =
|
92
|
+
long1 = CType.long
|
93
|
+
long2 = CType.long
|
94
94
|
|
95
|
-
a =
|
95
|
+
a = CType.unknown
|
96
96
|
a.unify long1
|
97
97
|
|
98
|
-
b =
|
98
|
+
b = CType.unknown
|
99
99
|
b.unify long2
|
100
100
|
|
101
101
|
assert a == b, "=="
|
@@ -107,7 +107,7 @@ class TestType < MiniTest::Unit::TestCase
|
|
107
107
|
end
|
108
108
|
|
109
109
|
def test_list_equal
|
110
|
-
type =
|
110
|
+
type = CType.new(:long, true)
|
111
111
|
refute_equal @unknown, type
|
112
112
|
refute_equal @long, type
|
113
113
|
assert_equal @long_list, type
|
@@ -119,20 +119,20 @@ class TestType < MiniTest::Unit::TestCase
|
|
119
119
|
end
|
120
120
|
|
121
121
|
def test_unknown?
|
122
|
-
assert_equal
|
123
|
-
refute_same
|
122
|
+
assert_equal CType.unknown, CType.unknown
|
123
|
+
refute_same CType.unknown, CType.unknown
|
124
124
|
end
|
125
125
|
|
126
126
|
def test_unknown_list
|
127
|
-
assert_equal @unknown_list,
|
128
|
-
refute_same
|
127
|
+
assert_equal @unknown_list, CType.unknown_list
|
128
|
+
refute_same CType.unknown_list, CType.unknown_list
|
129
129
|
assert @unknown_list.list?
|
130
130
|
end
|
131
131
|
|
132
132
|
def test_unify_fail
|
133
|
-
long =
|
134
|
-
string =
|
135
|
-
long_list =
|
133
|
+
long = CType.new(:long)
|
134
|
+
string = CType.new(:str)
|
135
|
+
long_list = CType.new(:long, true)
|
136
136
|
|
137
137
|
assert_raises(TypeError) do
|
138
138
|
long.unify string
|
@@ -144,8 +144,8 @@ class TestType < MiniTest::Unit::TestCase
|
|
144
144
|
end
|
145
145
|
|
146
146
|
def test_unify_simple
|
147
|
-
long =
|
148
|
-
unknown =
|
147
|
+
long = CType.new(:long)
|
148
|
+
unknown = CType.unknown
|
149
149
|
|
150
150
|
assert_equal @long, long
|
151
151
|
|
@@ -157,8 +157,8 @@ class TestType < MiniTest::Unit::TestCase
|
|
157
157
|
end
|
158
158
|
|
159
159
|
def test_unify_list
|
160
|
-
long_list =
|
161
|
-
unknown =
|
160
|
+
long_list = CType.new(:long, true)
|
161
|
+
unknown = CType.unknown
|
162
162
|
|
163
163
|
assert_equal @long_list, long_list
|
164
164
|
|
@@ -170,9 +170,9 @@ class TestType < MiniTest::Unit::TestCase
|
|
170
170
|
end
|
171
171
|
|
172
172
|
def test_unify_link
|
173
|
-
unknown1 =
|
174
|
-
unknown2 =
|
175
|
-
long =
|
173
|
+
unknown1 = CType.unknown
|
174
|
+
unknown2 = CType.unknown
|
175
|
+
long = CType.new(:long)
|
176
176
|
|
177
177
|
unknown1.unify unknown2
|
178
178
|
assert_same(unknown1.type, unknown2.type,
|
@@ -185,7 +185,7 @@ class TestType < MiniTest::Unit::TestCase
|
|
185
185
|
end
|
186
186
|
|
187
187
|
def test_unify_function
|
188
|
-
fun =
|
188
|
+
fun = CType.function [CType.unknown], CType.unknown
|
189
189
|
@unknown.unify fun
|
190
190
|
assert_equal fun, @unknown
|
191
191
|
end
|