rubycc 1.0.0

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.
Files changed (159) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +56 -0
  3. data/LICENSE.txt +21 -0
  4. data/NOTICE +52 -0
  5. data/README.md +208 -0
  6. data/data/README.md +117 -0
  7. data/data/r10_corpus_scan.json +4082 -0
  8. data/data/r10_manual_classification.json +5342 -0
  9. data/data/r10_verification_m4a.json +1531 -0
  10. data/data/r10_verification_m4b.json +1818 -0
  11. data/data/r10_verification_m4c.json +1489 -0
  12. data/data/r10_verification_m4d.json +318 -0
  13. data/data/r10_verification_rbs.json +192 -0
  14. data/data/verified_gems.json +397 -0
  15. data/exe/rmake +16 -0
  16. data/exe/rubycc +9 -0
  17. data/exe/rubycc-ar +114 -0
  18. data/exe/rubycc-doctor +14 -0
  19. data/exe/rubycc-pkgconf +8 -0
  20. data/include/float.h +87 -0
  21. data/include/iso646.h +18 -0
  22. data/include/libc/alloca.h +18 -0
  23. data/include/libc/arpa/inet.h +61 -0
  24. data/include/libc/assert.h +43 -0
  25. data/include/libc/dirent.h +72 -0
  26. data/include/libc/dlfcn.h +58 -0
  27. data/include/libc/features.h +205 -0
  28. data/include/libc/glibc/aarch64/ctype.h +108 -0
  29. data/include/libc/glibc/aarch64/endian.h +54 -0
  30. data/include/libc/glibc/aarch64/errno.h +154 -0
  31. data/include/libc/glibc/aarch64/fcntl.h +144 -0
  32. data/include/libc/glibc/aarch64/inttypes.h +182 -0
  33. data/include/libc/glibc/aarch64/limits.h +63 -0
  34. data/include/libc/glibc/aarch64/pthread.h +131 -0
  35. data/include/libc/glibc/aarch64/setjmp.h +84 -0
  36. data/include/libc/glibc/aarch64/stdint.h +174 -0
  37. data/include/libc/glibc/aarch64/sys/epoll.h +88 -0
  38. data/include/libc/glibc/aarch64/sys/fcntl.h +19 -0
  39. data/include/libc/glibc/aarch64/sys/select.h +75 -0
  40. data/include/libc/glibc/aarch64/sys/stat.h +136 -0
  41. data/include/libc/glibc/aarch64/sys/syscall.h +167 -0
  42. data/include/libc/glibc/aarch64/sys/time.h +74 -0
  43. data/include/libc/glibc/aarch64/sys/types.h +127 -0
  44. data/include/libc/glibc/aarch64/time.h +113 -0
  45. data/include/libc/glibc/x86_64/ctype.h +108 -0
  46. data/include/libc/glibc/x86_64/endian.h +54 -0
  47. data/include/libc/glibc/x86_64/errno.h +154 -0
  48. data/include/libc/glibc/x86_64/fcntl.h +134 -0
  49. data/include/libc/glibc/x86_64/inttypes.h +182 -0
  50. data/include/libc/glibc/x86_64/limits.h +61 -0
  51. data/include/libc/glibc/x86_64/pthread.h +111 -0
  52. data/include/libc/glibc/x86_64/setjmp.h +82 -0
  53. data/include/libc/glibc/x86_64/stdint.h +163 -0
  54. data/include/libc/glibc/x86_64/sys/epoll.h +91 -0
  55. data/include/libc/glibc/x86_64/sys/fcntl.h +19 -0
  56. data/include/libc/glibc/x86_64/sys/select.h +75 -0
  57. data/include/libc/glibc/x86_64/sys/stat.h +130 -0
  58. data/include/libc/glibc/x86_64/sys/syscall.h +188 -0
  59. data/include/libc/glibc/x86_64/sys/time.h +74 -0
  60. data/include/libc/glibc/x86_64/sys/types.h +123 -0
  61. data/include/libc/glibc/x86_64/time.h +113 -0
  62. data/include/libc/grp.h +50 -0
  63. data/include/libc/langinfo.h +126 -0
  64. data/include/libc/link.h +18 -0
  65. data/include/libc/locale.h +83 -0
  66. data/include/libc/math.h +191 -0
  67. data/include/libc/netinet/in.h +126 -0
  68. data/include/libc/netinet/tcp.h +44 -0
  69. data/include/libc/poll.h +46 -0
  70. data/include/libc/pwd.h +58 -0
  71. data/include/libc/regex.h +53 -0
  72. data/include/libc/sched.h +35 -0
  73. data/include/libc/signal.h +204 -0
  74. data/include/libc/stdio.h +157 -0
  75. data/include/libc/stdlib.h +92 -0
  76. data/include/libc/string.h +74 -0
  77. data/include/libc/strings.h +25 -0
  78. data/include/libc/sys/cdefs.h +126 -0
  79. data/include/libc/sys/inotify.h +111 -0
  80. data/include/libc/sys/ioctl.h +36 -0
  81. data/include/libc/sys/mman.h +65 -0
  82. data/include/libc/sys/param.h +41 -0
  83. data/include/libc/sys/resource.h +109 -0
  84. data/include/libc/sys/socket.h +167 -0
  85. data/include/libc/sys/statfs.h +82 -0
  86. data/include/libc/sys/timerfd.h +55 -0
  87. data/include/libc/sys/uio.h +40 -0
  88. data/include/libc/sys/un.h +25 -0
  89. data/include/libc/sys/utsname.h +35 -0
  90. data/include/libc/sys/wait.h +135 -0
  91. data/include/libc/termios.h +179 -0
  92. data/include/libc/unistd.h +194 -0
  93. data/include/stdalign.h +16 -0
  94. data/include/stdarg.h +31 -0
  95. data/include/stdatomic.h +158 -0
  96. data/include/stdbool.h +15 -0
  97. data/include/stdckdint.h +28 -0
  98. data/include/stddef.h +60 -0
  99. data/include/stdnoreturn.h +18 -0
  100. data/include/x86intrin.h +16 -0
  101. data/lib/rubycc/backend/aarch64.rb +1724 -0
  102. data/lib/rubycc/backend/x86_64.rb +1369 -0
  103. data/lib/rubycc/compile_error.rb +36 -0
  104. data/lib/rubycc/compiler.rb +305 -0
  105. data/lib/rubycc/doctor/builder.rb +151 -0
  106. data/lib/rubycc/doctor/cli.rb +190 -0
  107. data/lib/rubycc/doctor/fetcher.rb +84 -0
  108. data/lib/rubycc/doctor/gemfile.rb +115 -0
  109. data/lib/rubycc/doctor/verified_gems.rb +114 -0
  110. data/lib/rubycc/doctor.rb +16 -0
  111. data/lib/rubycc/driver.rb +463 -0
  112. data/lib/rubycc/front/ast.rb +528 -0
  113. data/lib/rubycc/front/constant_evaluator.rb +631 -0
  114. data/lib/rubycc/front/initializer_resolver.rb +592 -0
  115. data/lib/rubycc/front/lexeme_reader.rb +460 -0
  116. data/lib/rubycc/front/lexer.rb +232 -0
  117. data/lib/rubycc/front/parser.rb +4122 -0
  118. data/lib/rubycc/front/token.rb +49 -0
  119. data/lib/rubycc/ir/call_convention.rb +486 -0
  120. data/lib/rubycc/ir/generator.rb +6036 -0
  121. data/lib/rubycc/ir/ir.rb +417 -0
  122. data/lib/rubycc/link/compat_runtime.rb +89 -0
  123. data/lib/rubycc/link/errors.rb +13 -0
  124. data/lib/rubycc/link/executable_linker.rb +405 -0
  125. data/lib/rubycc/link/library_resolver.rb +437 -0
  126. data/lib/rubycc/link/partial_linker.rb +546 -0
  127. data/lib/rubycc/link/shared_linker.rb +1732 -0
  128. data/lib/rubycc/mkmf_shim.rb +83 -0
  129. data/lib/rubycc/objfile/ar_archive.rb +437 -0
  130. data/lib/rubycc/objfile/elf_reader.rb +646 -0
  131. data/lib/rubycc/objfile/elf_writer.rb +891 -0
  132. data/lib/rubycc/objfile/relocatable_writer.rb +376 -0
  133. data/lib/rubycc/pkgconf/cli.rb +139 -0
  134. data/lib/rubycc/pkgconf/errors.rb +39 -0
  135. data/lib/rubycc/pkgconf/model.rb +28 -0
  136. data/lib/rubycc/pkgconf/parser.rb +109 -0
  137. data/lib/rubycc/pkgconf/pkgconf.rb +15 -0
  138. data/lib/rubycc/pkgconf/resolver.rb +70 -0
  139. data/lib/rubycc/pkgconf/search_path.rb +38 -0
  140. data/lib/rubycc/pkgconf/system_path_filter.rb +131 -0
  141. data/lib/rubycc/preprocess/constant_expression.rb +219 -0
  142. data/lib/rubycc/preprocess/glibc_version.rb +124 -0
  143. data/lib/rubycc/preprocess/pp_token.rb +62 -0
  144. data/lib/rubycc/preprocess/preprocessor.rb +2020 -0
  145. data/lib/rubycc/preprocess/scanner.rb +290 -0
  146. data/lib/rubycc/preprocess/token_converter.rb +157 -0
  147. data/lib/rubycc/rmake/cli.rb +143 -0
  148. data/lib/rubycc/rmake/errors.rb +71 -0
  149. data/lib/rubycc/rmake/executor.rb +818 -0
  150. data/lib/rubycc/rmake/expander.rb +251 -0
  151. data/lib/rubycc/rmake/makefile.rb +352 -0
  152. data/lib/rubycc/rmake/model.rb +137 -0
  153. data/lib/rubycc/rmake/parser.rb +226 -0
  154. data/lib/rubycc/rmake/rmake.rb +15 -0
  155. data/lib/rubycc/type.rb +1236 -0
  156. data/lib/rubycc/version.rb +5 -0
  157. data/lib/rubycc.rb +36 -0
  158. data/lib/rubygems_plugin.rb +102 -0
  159. metadata +219 -0
@@ -0,0 +1,1818 @@
1
+ {
2
+ "schema_version": 2,
3
+ "artifact_kind": "r10-gem-verification-summary",
4
+ "batch": "R10-M4B",
5
+ "environment": "glibc x86_64 / ruby 3.4.5",
6
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
7
+ "architecture": "x86_64",
8
+ "aarch64_evidence": false,
9
+ "work_dir": "<VERIFY_WORK>",
10
+ "control": [
11
+ {
12
+ "name": "etc",
13
+ "version": "1.4.6",
14
+ "mode": "control",
15
+ "status": "pass",
16
+ "reason": null,
17
+ "sanity": true,
18
+ "evidence": [
19
+ "no rubycc traces (host cc)"
20
+ ],
21
+ "files": 1,
22
+ "summary": {
23
+ "line": "18 tests, 589 assertions, 0 failures, 0 errors, 0 pendings, 2 omissions, 0 notifications",
24
+ "tests": 18,
25
+ "assertions": 589,
26
+ "failures": 0,
27
+ "errors": 0,
28
+ "other": {
29
+ "omissions": 2
30
+ }
31
+ },
32
+ "environment": "glibc x86_64 / ruby 3.4.5",
33
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
34
+ "work_dir": "<VERIFY_WORK>",
35
+ "build_state": "pass",
36
+ "extension_load_state": "pass",
37
+ "suite_state": "pass",
38
+ "provenance": {
39
+ "gem_url": "https://rubygems.org/downloads/etc-1.4.6.gem",
40
+ "gem_sha256": "0f7e9e7842ea5e3c3bd9bc81746ebb8c65ea29e4c42a93520a0d638129c7de01",
41
+ "source_kind": "source_tarball",
42
+ "source_url": "https://github.com/ruby/etc/archive/refs/tags/v1.4.6.tar.gz",
43
+ "source_sha256": "6c27f946d6fa149a25d5368d987ad215c998d1dd005e114082cfc9ed08613966",
44
+ "source_relative_path": "r10-m4b/etc-1.4.6-src.tar.gz"
45
+ },
46
+ "recipe": {
47
+ "name": "etc",
48
+ "version": "1.4.6",
49
+ "source_kind": "source_tarball",
50
+ "source_url": "https://github.com/ruby/etc/archive/refs/tags/v1.4.6.tar.gz",
51
+ "runner": "test_unit",
52
+ "test_glob": "test/**/test_*.rb",
53
+ "exclude": [],
54
+ "load_paths": [
55
+ "lib",
56
+ "test/lib"
57
+ ],
58
+ "extconf_args": [],
59
+ "sos": [
60
+ {
61
+ "from": "lib/etc.so",
62
+ "to": "lib/etc.so"
63
+ }
64
+ ],
65
+ "test_deps": [
66
+ "test-unit",
67
+ "test-unit-ruby-core"
68
+ ],
69
+ "test_dep_versions": {},
70
+ "sanity": {
71
+ "requires": [
72
+ "etc"
73
+ ],
74
+ "expression": "injected_so_loaded?"
75
+ },
76
+ "recipe_fingerprint": "03aecfb644e4d1488481d11998b0f104f0ce70885cb2f25261c95abf6db5d510"
77
+ },
78
+ "execution_context": {
79
+ "environment": "glibc x86_64 / ruby 3.4.5",
80
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
81
+ "host_cpu": "x86_64",
82
+ "ruby_arch": "x86_64-linux",
83
+ "cc": null,
84
+ "make": null,
85
+ "pkg_config": null,
86
+ "rubycc_mode": "control"
87
+ },
88
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
89
+ "rubycc_worktree_dirty": true
90
+ },
91
+ {
92
+ "name": "io-nonblock",
93
+ "version": "0.3.2",
94
+ "mode": "control",
95
+ "status": "pass",
96
+ "reason": null,
97
+ "sanity": true,
98
+ "evidence": [
99
+ "no rubycc traces (host cc)"
100
+ ],
101
+ "files": 1,
102
+ "summary": {
103
+ "line": "2 tests, 8 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
104
+ "tests": 2,
105
+ "assertions": 8,
106
+ "failures": 0,
107
+ "errors": 0,
108
+ "other": {}
109
+ },
110
+ "environment": "glibc x86_64 / ruby 3.4.5",
111
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
112
+ "work_dir": "<VERIFY_WORK>",
113
+ "build_state": "pass",
114
+ "extension_load_state": "pass",
115
+ "suite_state": "pass",
116
+ "provenance": {
117
+ "gem_url": "https://rubygems.org/downloads/io-nonblock-0.3.2.gem",
118
+ "gem_sha256": "2014636edae4e32e893a3b9e6bac9d1c5b8d3af41b8cd5bcb2279a78fbef937d",
119
+ "source_kind": "source_tarball",
120
+ "source_url": "https://github.com/ruby/io-nonblock/archive/refs/tags/v0.3.2.tar.gz",
121
+ "source_sha256": "dcdd60b58aca00a3a59beded015f22c4173e351a099502f292d64e651d0014b6",
122
+ "source_relative_path": "r10-m4b/io-nonblock-0.3.2-src.tar.gz"
123
+ },
124
+ "recipe": {
125
+ "name": "io-nonblock",
126
+ "version": "0.3.2",
127
+ "source_kind": "source_tarball",
128
+ "source_url": "https://github.com/ruby/io-nonblock/archive/refs/tags/v0.3.2.tar.gz",
129
+ "runner": "test_unit",
130
+ "test_glob": "test/**/test_*.rb",
131
+ "exclude": [],
132
+ "load_paths": [
133
+ "lib",
134
+ "test/lib"
135
+ ],
136
+ "extconf_args": [],
137
+ "sos": [
138
+ {
139
+ "from": "lib/io/nonblock.so",
140
+ "to": "lib/io/nonblock.so"
141
+ }
142
+ ],
143
+ "test_deps": [
144
+ "test-unit",
145
+ "test-unit-ruby-core"
146
+ ],
147
+ "test_dep_versions": {},
148
+ "sanity": {
149
+ "requires": [
150
+ "io/nonblock"
151
+ ],
152
+ "expression": "injected_so_loaded?"
153
+ },
154
+ "recipe_fingerprint": "73a562742e67099133dfe87115e903c136cb1e2cd8cf694f81ade2eaa5de2553"
155
+ },
156
+ "execution_context": {
157
+ "environment": "glibc x86_64 / ruby 3.4.5",
158
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
159
+ "host_cpu": "x86_64",
160
+ "ruby_arch": "x86_64-linux",
161
+ "cc": null,
162
+ "make": null,
163
+ "pkg_config": null,
164
+ "rubycc_mode": "control"
165
+ },
166
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
167
+ "rubycc_worktree_dirty": true
168
+ },
169
+ {
170
+ "name": "io-wait",
171
+ "version": "0.4.0",
172
+ "mode": "control",
173
+ "status": "pass",
174
+ "reason": null,
175
+ "sanity": true,
176
+ "evidence": [
177
+ "no rubycc traces (host cc)"
178
+ ],
179
+ "files": 3,
180
+ "summary": {
181
+ "line": "26 tests, 41 assertions, 0 failures, 0 errors, 0 pendings, 1 omissions, 0 notifications",
182
+ "tests": 26,
183
+ "assertions": 41,
184
+ "failures": 0,
185
+ "errors": 0,
186
+ "other": {
187
+ "omissions": 1
188
+ }
189
+ },
190
+ "environment": "glibc x86_64 / ruby 3.4.5",
191
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
192
+ "work_dir": "<VERIFY_WORK>",
193
+ "build_state": "pass",
194
+ "extension_load_state": "pass",
195
+ "suite_state": "pass",
196
+ "provenance": {
197
+ "gem_url": "https://rubygems.org/downloads/io-wait-0.4.0.gem",
198
+ "gem_sha256": "872c703066ae5371bf19f441b4d4991cf4f259ada548c717cadce26b256e9309",
199
+ "source_kind": "source_tarball",
200
+ "source_url": "https://github.com/ruby/io-wait/archive/refs/tags/v0.4.0.tar.gz",
201
+ "source_sha256": "965254ebbafaf71cef557a2fb99a3b45edcc5ff823286d7abb920c4f4295c58c",
202
+ "source_relative_path": "r10-m4b/io-wait-0.4.0-src.tar.gz"
203
+ },
204
+ "recipe": {
205
+ "name": "io-wait",
206
+ "version": "0.4.0",
207
+ "source_kind": "source_tarball",
208
+ "source_url": "https://github.com/ruby/io-wait/archive/refs/tags/v0.4.0.tar.gz",
209
+ "runner": "test_unit",
210
+ "test_glob": "test/**/test_*.rb",
211
+ "exclude": [],
212
+ "load_paths": [
213
+ "lib",
214
+ "test/lib"
215
+ ],
216
+ "extconf_args": [],
217
+ "sos": [
218
+ {
219
+ "from": "lib/io/wait.so",
220
+ "to": "lib/io/wait.so"
221
+ }
222
+ ],
223
+ "test_deps": [
224
+ "test-unit",
225
+ "test-unit-ruby-core"
226
+ ],
227
+ "test_dep_versions": {},
228
+ "sanity": {
229
+ "requires": [
230
+ "io/wait"
231
+ ],
232
+ "expression": "injected_so_loaded?"
233
+ },
234
+ "recipe_fingerprint": "f3d046cfa19e66fb63fa50bd4c07257c19b53327f988d8955b4cf4163773e7e3"
235
+ },
236
+ "execution_context": {
237
+ "environment": "glibc x86_64 / ruby 3.4.5",
238
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
239
+ "host_cpu": "x86_64",
240
+ "ruby_arch": "x86_64-linux",
241
+ "cc": null,
242
+ "make": null,
243
+ "pkg_config": null,
244
+ "rubycc_mode": "control"
245
+ },
246
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
247
+ "rubycc_worktree_dirty": true
248
+ },
249
+ {
250
+ "name": "erb",
251
+ "version": "6.0.1.1",
252
+ "mode": "control",
253
+ "status": "pass",
254
+ "reason": null,
255
+ "sanity": true,
256
+ "evidence": [
257
+ "no rubycc traces (host cc)"
258
+ ],
259
+ "files": 3,
260
+ "summary": {
261
+ "line": "48 tests, 143 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
262
+ "tests": 48,
263
+ "assertions": 143,
264
+ "failures": 0,
265
+ "errors": 0,
266
+ "other": {}
267
+ },
268
+ "environment": "glibc x86_64 / ruby 3.4.5",
269
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
270
+ "work_dir": "<VERIFY_WORK>",
271
+ "build_state": "pass",
272
+ "extension_load_state": "pass",
273
+ "suite_state": "pass",
274
+ "provenance": {
275
+ "gem_url": "https://rubygems.org/downloads/erb-6.0.1.1.gem",
276
+ "gem_sha256": "ce5357460652a9a94667c5769eaffc551eea2b14a8531ac7c7b1d77b860758b9",
277
+ "source_kind": "source_tarball",
278
+ "source_url": "https://github.com/ruby/erb/archive/refs/tags/v6.0.1.1.tar.gz",
279
+ "source_sha256": "ca52997eb3a6a54a1d7f76b29a10e26745a75f19503949478bfcd3816d473547",
280
+ "source_relative_path": "r10-m4b/erb-6.0.1.1-src.tar.gz"
281
+ },
282
+ "recipe": {
283
+ "name": "erb",
284
+ "version": "6.0.1.1",
285
+ "source_kind": "source_tarball",
286
+ "source_url": "https://github.com/ruby/erb/archive/refs/tags/v6.0.1.1.tar.gz",
287
+ "runner": "test_unit",
288
+ "test_glob": "test/**/test_*.rb",
289
+ "exclude": [],
290
+ "load_paths": [
291
+ "lib",
292
+ "test/lib"
293
+ ],
294
+ "extconf_args": [],
295
+ "sos": [
296
+ {
297
+ "from": "lib/erb/escape.so",
298
+ "to": "lib/erb/escape.so"
299
+ }
300
+ ],
301
+ "test_deps": [
302
+ "test-unit",
303
+ "test-unit-ruby-core"
304
+ ],
305
+ "test_dep_versions": {},
306
+ "sanity": {
307
+ "requires": [
308
+ "erb"
309
+ ],
310
+ "expression": "injected_so_loaded? && ERB::Escape.instance_method(:html_escape).source_location.nil?"
311
+ },
312
+ "recipe_fingerprint": "eee715fad1abdccc97f0cdfed7b0f2facd4782478e78825b1bfbec1002e4c16d"
313
+ },
314
+ "execution_context": {
315
+ "environment": "glibc x86_64 / ruby 3.4.5",
316
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
317
+ "host_cpu": "x86_64",
318
+ "ruby_arch": "x86_64-linux",
319
+ "cc": null,
320
+ "make": null,
321
+ "pkg_config": null,
322
+ "rubycc_mode": "control"
323
+ },
324
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
325
+ "rubycc_worktree_dirty": true
326
+ },
327
+ {
328
+ "name": "io-console",
329
+ "version": "0.8.2",
330
+ "mode": "control",
331
+ "status": "pass",
332
+ "reason": null,
333
+ "sanity": true,
334
+ "evidence": [
335
+ "no rubycc traces (host cc)"
336
+ ],
337
+ "files": 2,
338
+ "summary": {
339
+ "line": "28 tests, 109 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
340
+ "tests": 28,
341
+ "assertions": 109,
342
+ "failures": 0,
343
+ "errors": 0,
344
+ "other": {}
345
+ },
346
+ "environment": "glibc x86_64 / ruby 3.4.5",
347
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
348
+ "work_dir": "<VERIFY_WORK>",
349
+ "build_state": "pass",
350
+ "extension_load_state": "pass",
351
+ "suite_state": "pass",
352
+ "provenance": {
353
+ "gem_url": "https://rubygems.org/downloads/io-console-0.8.2.gem",
354
+ "gem_sha256": "d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc",
355
+ "source_kind": "source_tarball",
356
+ "source_url": "https://github.com/ruby/io-console/archive/refs/tags/v0.8.2.tar.gz",
357
+ "source_sha256": "3b810de791a28d7de14cfad2890bdff0e6607f09d2da8b943fde8c6cf557536f",
358
+ "source_relative_path": "r10-m4b/io-console-0.8.2-src.tar.gz"
359
+ },
360
+ "recipe": {
361
+ "name": "io-console",
362
+ "version": "0.8.2",
363
+ "source_kind": "source_tarball",
364
+ "source_url": "https://github.com/ruby/io-console/archive/refs/tags/v0.8.2.tar.gz",
365
+ "runner": "test_unit",
366
+ "test_glob": "test/**/test_*.rb",
367
+ "exclude": [],
368
+ "load_paths": [
369
+ "lib",
370
+ "test/lib"
371
+ ],
372
+ "extconf_args": [],
373
+ "sos": [
374
+ {
375
+ "from": "lib/io/console.so",
376
+ "to": "lib/io/console.so"
377
+ }
378
+ ],
379
+ "test_deps": [
380
+ "test-unit",
381
+ "test-unit-ruby-core"
382
+ ],
383
+ "test_dep_versions": {},
384
+ "sanity": {
385
+ "requires": [
386
+ "io/console"
387
+ ],
388
+ "expression": "injected_so_loaded?"
389
+ },
390
+ "recipe_fingerprint": "d87dd9fa824ab3084a908ceaa463d5b0167103049eb9ea5b5ccb18c1e151ec07"
391
+ },
392
+ "execution_context": {
393
+ "environment": "glibc x86_64 / ruby 3.4.5",
394
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
395
+ "host_cpu": "x86_64",
396
+ "ruby_arch": "x86_64-linux",
397
+ "cc": null,
398
+ "make": null,
399
+ "pkg_config": null,
400
+ "rubycc_mode": "control"
401
+ },
402
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
403
+ "rubycc_worktree_dirty": true
404
+ },
405
+ {
406
+ "name": "digest",
407
+ "version": "3.2.1",
408
+ "mode": "control",
409
+ "status": "pass",
410
+ "reason": null,
411
+ "sanity": true,
412
+ "evidence": [
413
+ "no rubycc traces (host cc)"
414
+ ],
415
+ "files": 3,
416
+ "summary": {
417
+ "line": "98 tests, 215 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
418
+ "tests": 98,
419
+ "assertions": 215,
420
+ "failures": 0,
421
+ "errors": 0,
422
+ "other": {}
423
+ },
424
+ "environment": "glibc x86_64 / ruby 3.4.5",
425
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
426
+ "work_dir": "<VERIFY_WORK>",
427
+ "build_state": "pass",
428
+ "extension_load_state": "pass",
429
+ "suite_state": "pass",
430
+ "provenance": {
431
+ "gem_url": "https://rubygems.org/downloads/digest-3.2.1.gem",
432
+ "gem_sha256": "ab3312b4e272d7d5dc41c564c86a25861a1f34ac5153374199a0b74861395947",
433
+ "source_kind": "source_tarball",
434
+ "source_url": "https://github.com/ruby/digest/archive/refs/tags/v3.2.1.tar.gz",
435
+ "source_sha256": "637c9bfac0a9e9afebf4a1e168250c2e3f8c42878ee2d3d3f17c8a66d8108df4",
436
+ "source_relative_path": "r10-m4b/digest-3.2.1-src.tar.gz"
437
+ },
438
+ "recipe": {
439
+ "name": "digest",
440
+ "version": "3.2.1",
441
+ "source_kind": "source_tarball",
442
+ "source_url": "https://github.com/ruby/digest/archive/refs/tags/v3.2.1.tar.gz",
443
+ "runner": "test_unit",
444
+ "test_glob": "test/**/test_*.rb",
445
+ "exclude": [],
446
+ "load_paths": [
447
+ "test",
448
+ "test/lib",
449
+ "lib",
450
+ "ext/digest/lib"
451
+ ],
452
+ "extconf_args": [],
453
+ "sos": [
454
+ {
455
+ "from": "lib/digest.so",
456
+ "to": "lib/digest.so"
457
+ },
458
+ {
459
+ "from": "lib/digest/bubblebabble.so",
460
+ "to": "lib/digest/bubblebabble.so"
461
+ },
462
+ {
463
+ "from": "lib/digest/md5.so",
464
+ "to": "lib/digest/md5.so"
465
+ },
466
+ {
467
+ "from": "lib/digest/rmd160.so",
468
+ "to": "lib/digest/rmd160.so"
469
+ },
470
+ {
471
+ "from": "lib/digest/sha1.so",
472
+ "to": "lib/digest/sha1.so"
473
+ },
474
+ {
475
+ "from": "lib/digest/sha2.so",
476
+ "to": "lib/digest/sha2.so"
477
+ }
478
+ ],
479
+ "test_deps": [
480
+ "test-unit",
481
+ "test-unit-ruby-core"
482
+ ],
483
+ "test_dep_versions": {},
484
+ "sanity": {
485
+ "requires": [
486
+ "digest",
487
+ "digest/bubblebabble",
488
+ "digest/md5",
489
+ "digest/rmd160",
490
+ "digest/sha1",
491
+ "digest/sha2"
492
+ ],
493
+ "expression": "injected_so_loaded?"
494
+ },
495
+ "recipe_fingerprint": "b089844782edb95aae78885fc534d17c131f2298f97ace9093c9f664c995469c"
496
+ },
497
+ "execution_context": {
498
+ "environment": "glibc x86_64 / ruby 3.4.5",
499
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
500
+ "host_cpu": "x86_64",
501
+ "ruby_arch": "x86_64-linux",
502
+ "cc": null,
503
+ "make": null,
504
+ "pkg_config": null,
505
+ "rubycc_mode": "control"
506
+ },
507
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
508
+ "rubycc_worktree_dirty": true
509
+ },
510
+ {
511
+ "name": "zlib",
512
+ "version": "3.2.3",
513
+ "mode": "control",
514
+ "status": "pass",
515
+ "reason": null,
516
+ "sanity": true,
517
+ "evidence": [
518
+ "no rubycc traces (host cc)"
519
+ ],
520
+ "files": 1,
521
+ "summary": {
522
+ "line": "97 tests, 540 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
523
+ "tests": 97,
524
+ "assertions": 540,
525
+ "failures": 0,
526
+ "errors": 0,
527
+ "other": {}
528
+ },
529
+ "environment": "glibc x86_64 / ruby 3.4.5",
530
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
531
+ "work_dir": "<VERIFY_WORK>",
532
+ "build_state": "pass",
533
+ "extension_load_state": "pass",
534
+ "suite_state": "pass",
535
+ "provenance": {
536
+ "gem_url": "https://rubygems.org/downloads/zlib-3.2.3.gem",
537
+ "gem_sha256": "5bd316698b32f31a64ab910a8b6c282442ca1626a81bbd6a1674e8522e319c20",
538
+ "source_kind": "source_tarball",
539
+ "source_url": "https://github.com/ruby/zlib/archive/refs/tags/v3.2.3.tar.gz",
540
+ "source_sha256": "f084546dfb04345d0bc601ba8e2d634c8738a45478c9d794588a7aa413ef1b32",
541
+ "source_relative_path": "r10-m4b/zlib-3.2.3-src.tar.gz"
542
+ },
543
+ "recipe": {
544
+ "name": "zlib",
545
+ "version": "3.2.3",
546
+ "source_kind": "source_tarball",
547
+ "source_url": "https://github.com/ruby/zlib/archive/refs/tags/v3.2.3.tar.gz",
548
+ "runner": "test_unit",
549
+ "test_glob": "test/**/test_*.rb",
550
+ "exclude": [],
551
+ "load_paths": [
552
+ "lib",
553
+ "test/lib"
554
+ ],
555
+ "extconf_args": [],
556
+ "sos": [
557
+ {
558
+ "from": "lib/zlib.so",
559
+ "to": "lib/zlib.so"
560
+ }
561
+ ],
562
+ "test_deps": [
563
+ "test-unit",
564
+ "test-unit-ruby-core"
565
+ ],
566
+ "test_dep_versions": {},
567
+ "sanity": {
568
+ "requires": [
569
+ "zlib"
570
+ ],
571
+ "expression": "injected_so_loaded?"
572
+ },
573
+ "recipe_fingerprint": "a04ad4299270f1259683dd48df9883670db432263322679fef1b419692269b1e"
574
+ },
575
+ "execution_context": {
576
+ "environment": "glibc x86_64 / ruby 3.4.5",
577
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
578
+ "host_cpu": "x86_64",
579
+ "ruby_arch": "x86_64-linux",
580
+ "cc": null,
581
+ "make": null,
582
+ "pkg_config": null,
583
+ "rubycc_mode": "control"
584
+ },
585
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
586
+ "rubycc_worktree_dirty": true
587
+ },
588
+ {
589
+ "name": "psych",
590
+ "version": "5.3.1",
591
+ "mode": "control",
592
+ "status": "pass",
593
+ "reason": null,
594
+ "sanity": true,
595
+ "evidence": [
596
+ "no rubycc traces (host cc)"
597
+ ],
598
+ "files": 48,
599
+ "summary": {
600
+ "line": "633 tests, 1598 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
601
+ "tests": 633,
602
+ "assertions": 1598,
603
+ "failures": 0,
604
+ "errors": 0,
605
+ "other": {}
606
+ },
607
+ "environment": "glibc x86_64 / ruby 3.4.5",
608
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
609
+ "work_dir": "<VERIFY_WORK>",
610
+ "build_state": "pass",
611
+ "extension_load_state": "pass",
612
+ "suite_state": "pass",
613
+ "provenance": {
614
+ "gem_url": "https://rubygems.org/downloads/psych-5.3.1.gem",
615
+ "gem_sha256": "eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974",
616
+ "source_kind": "source_tarball",
617
+ "source_url": "https://github.com/ruby/psych/archive/refs/tags/v5.3.1.tar.gz",
618
+ "source_sha256": "513c61962045e72c7a4e53e4437701374f6f9336b98a28c28e06d58bb5e8c17d",
619
+ "source_relative_path": "r10-m4b/psych-5.3.1-src.tar.gz"
620
+ },
621
+ "recipe": {
622
+ "name": "psych",
623
+ "version": "5.3.1",
624
+ "source_kind": "source_tarball",
625
+ "source_url": "https://github.com/ruby/psych/archive/refs/tags/v5.3.1.tar.gz",
626
+ "runner": "test_unit",
627
+ "test_glob": "test/**/test_*.rb",
628
+ "exclude": [],
629
+ "load_paths": [
630
+ "lib",
631
+ "test/lib",
632
+ "test"
633
+ ],
634
+ "extconf_args": [],
635
+ "sos": [
636
+ {
637
+ "from": "lib/psych.so",
638
+ "to": "lib/psych.so"
639
+ }
640
+ ],
641
+ "test_deps": [
642
+ "test-unit",
643
+ "test-unit-ruby-core"
644
+ ],
645
+ "test_dep_versions": {},
646
+ "sanity": {
647
+ "requires": [
648
+ "psych"
649
+ ],
650
+ "expression": "injected_so_loaded?"
651
+ },
652
+ "recipe_fingerprint": "5a35ced11ac74e29038649138960e978ea60f91b9c9a4dc6f53211a76e5b6e2c"
653
+ },
654
+ "execution_context": {
655
+ "environment": "glibc x86_64 / ruby 3.4.5",
656
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
657
+ "host_cpu": "x86_64",
658
+ "ruby_arch": "x86_64-linux",
659
+ "cc": null,
660
+ "make": null,
661
+ "pkg_config": null,
662
+ "rubycc_mode": "control"
663
+ },
664
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
665
+ "rubycc_worktree_dirty": true
666
+ },
667
+ {
668
+ "name": "syslog",
669
+ "version": "0.3.0",
670
+ "mode": "control",
671
+ "status": "pass",
672
+ "reason": null,
673
+ "sanity": true,
674
+ "evidence": [
675
+ "no rubycc traces (host cc)"
676
+ ],
677
+ "files": 2,
678
+ "summary": {
679
+ "line": "32 tests, 234 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
680
+ "tests": 32,
681
+ "assertions": 234,
682
+ "failures": 0,
683
+ "errors": 0,
684
+ "other": {}
685
+ },
686
+ "environment": "glibc x86_64 / ruby 3.4.5",
687
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
688
+ "work_dir": "<VERIFY_WORK>",
689
+ "build_state": "pass",
690
+ "extension_load_state": "pass",
691
+ "suite_state": "pass",
692
+ "provenance": {
693
+ "gem_url": "https://rubygems.org/downloads/syslog-0.3.0.gem",
694
+ "gem_sha256": "4dfe6e7bd5adb6383706bb4ad5a05da1f3a09917a507e8f913c73287085c7408",
695
+ "source_kind": "source_tarball",
696
+ "source_url": "https://github.com/ruby/syslog/archive/refs/tags/v0.3.0.tar.gz",
697
+ "source_sha256": "d7e2862d99326e1a5908a203a57e57425a7a3cc20d0a4b4bc2d0e52085aa4d9b",
698
+ "source_relative_path": "r10-m4b/syslog-0.3.0-src.tar.gz"
699
+ },
700
+ "recipe": {
701
+ "name": "syslog",
702
+ "version": "0.3.0",
703
+ "source_kind": "source_tarball",
704
+ "source_url": "https://github.com/ruby/syslog/archive/refs/tags/v0.3.0.tar.gz",
705
+ "runner": "test_unit",
706
+ "test_glob": "test/**/test_*.rb",
707
+ "exclude": [],
708
+ "load_paths": [
709
+ "lib",
710
+ "test"
711
+ ],
712
+ "extconf_args": [],
713
+ "sos": [
714
+ {
715
+ "from": "lib/syslog_ext.so",
716
+ "to": "lib/syslog_ext.so"
717
+ }
718
+ ],
719
+ "test_deps": [
720
+ "test-unit"
721
+ ],
722
+ "test_dep_versions": {},
723
+ "sanity": {
724
+ "requires": [
725
+ "syslog"
726
+ ],
727
+ "expression": "injected_so_loaded?"
728
+ },
729
+ "recipe_fingerprint": "b1de836e4fef8f3460c35a4c1c0139e31df16d6a9d13fe2639fc4f6b191a4eec"
730
+ },
731
+ "execution_context": {
732
+ "environment": "glibc x86_64 / ruby 3.4.5",
733
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
734
+ "host_cpu": "x86_64",
735
+ "ruby_arch": "x86_64-linux",
736
+ "cc": null,
737
+ "make": null,
738
+ "pkg_config": null,
739
+ "rubycc_mode": "control"
740
+ },
741
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
742
+ "rubycc_worktree_dirty": true
743
+ },
744
+ {
745
+ "name": "http_parser.rb",
746
+ "version": "0.8.1",
747
+ "mode": "control",
748
+ "status": "pass",
749
+ "reason": null,
750
+ "sanity": true,
751
+ "evidence": [
752
+ "no rubycc traces (host cc)"
753
+ ],
754
+ "files": 1,
755
+ "summary": {
756
+ "line": "72 examples, 0 failures",
757
+ "tests": 72,
758
+ "assertions": null,
759
+ "failures": 0,
760
+ "errors": 0,
761
+ "other": {}
762
+ },
763
+ "environment": "glibc x86_64 / ruby 3.4.5",
764
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
765
+ "work_dir": "<VERIFY_WORK>",
766
+ "build_state": "pass",
767
+ "extension_load_state": "pass",
768
+ "suite_state": "pass",
769
+ "provenance": {
770
+ "gem_url": "https://rubygems.org/downloads/http_parser.rb-0.8.1.gem",
771
+ "gem_sha256": "9ae8df145b39aa5398b2f90090d651c67bd8e2ebfe4507c966579f641e11097a",
772
+ "source_kind": "source_tarball",
773
+ "source_url": "https://github.com/tmm1/http_parser.rb/archive/refs/tags/v0.8.1.tar.gz",
774
+ "source_sha256": "3ba6e0949d540dd915d5b9fb62bd06668c8ecd2a799785b192256fc117f937ae",
775
+ "source_relative_path": "r10-m4b/http_parser.rb-0.8.1-src.tar.gz"
776
+ },
777
+ "recipe": {
778
+ "name": "http_parser.rb",
779
+ "version": "0.8.1",
780
+ "source_kind": "source_tarball",
781
+ "source_url": "https://github.com/tmm1/http_parser.rb/archive/refs/tags/v0.8.1.tar.gz",
782
+ "runner": "rspec",
783
+ "test_glob": "spec/**/*_spec.rb",
784
+ "exclude": [],
785
+ "load_paths": [
786
+ "lib",
787
+ "spec"
788
+ ],
789
+ "extconf_args": [],
790
+ "sos": [
791
+ {
792
+ "from": "lib/ruby_http_parser.so",
793
+ "to": "lib/ruby_http_parser.so"
794
+ }
795
+ ],
796
+ "test_deps": [
797
+ "rspec"
798
+ ],
799
+ "test_dep_versions": {},
800
+ "sanity": {
801
+ "requires": [
802
+ "http_parser"
803
+ ],
804
+ "expression": "injected_so_loaded?"
805
+ },
806
+ "recipe_fingerprint": "05d3dc56da07767ed2af5f7d40c2cb55002989b8787fe788dd9a54dbc537fe29"
807
+ },
808
+ "execution_context": {
809
+ "environment": "glibc x86_64 / ruby 3.4.5",
810
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
811
+ "host_cpu": "x86_64",
812
+ "ruby_arch": "x86_64-linux",
813
+ "cc": null,
814
+ "make": null,
815
+ "pkg_config": null,
816
+ "rubycc_mode": "control"
817
+ },
818
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
819
+ "rubycc_worktree_dirty": true
820
+ },
821
+ {
822
+ "name": "websocket-driver",
823
+ "version": "0.8.2",
824
+ "mode": "control",
825
+ "status": "pass",
826
+ "reason": null,
827
+ "sanity": true,
828
+ "evidence": [
829
+ "no rubycc traces (host cc)"
830
+ ],
831
+ "files": 4,
832
+ "summary": {
833
+ "line": "196 examples, 0 failures",
834
+ "tests": 196,
835
+ "assertions": null,
836
+ "failures": 0,
837
+ "errors": 0,
838
+ "other": {}
839
+ },
840
+ "environment": "glibc x86_64 / ruby 3.4.5",
841
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
842
+ "work_dir": "<VERIFY_WORK>",
843
+ "build_state": "pass",
844
+ "extension_load_state": "pass",
845
+ "suite_state": "pass",
846
+ "provenance": {
847
+ "gem_url": "https://rubygems.org/downloads/websocket-driver-0.8.2.gem",
848
+ "gem_sha256": "97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146",
849
+ "source_kind": "source_tarball",
850
+ "source_url": "https://github.com/faye/websocket-driver-ruby/archive/refs/tags/0.8.2.tar.gz",
851
+ "source_sha256": "0ee8ed7d59f838bb5b6f3dfb7a606a64e32172b614dab1e325f6df9bdf943772",
852
+ "source_relative_path": "r10-m4b/websocket-driver-0.8.2-src.tar.gz"
853
+ },
854
+ "recipe": {
855
+ "name": "websocket-driver",
856
+ "version": "0.8.2",
857
+ "source_kind": "source_tarball",
858
+ "source_url": "https://github.com/faye/websocket-driver-ruby/archive/refs/tags/0.8.2.tar.gz",
859
+ "runner": "rspec",
860
+ "test_glob": "spec/**/*_spec.rb",
861
+ "exclude": [],
862
+ "load_paths": [
863
+ "lib",
864
+ "spec"
865
+ ],
866
+ "extconf_args": [],
867
+ "sos": [
868
+ {
869
+ "from": "lib/websocket_mask.so",
870
+ "to": "lib/websocket_mask.so"
871
+ }
872
+ ],
873
+ "test_deps": [
874
+ "rspec"
875
+ ],
876
+ "test_dep_versions": {},
877
+ "sanity": {
878
+ "requires": [
879
+ "websocket/driver"
880
+ ],
881
+ "expression": "injected_so_loaded?"
882
+ },
883
+ "recipe_fingerprint": "6ce2b3c9430fd592954c83e39d394ea1625d00134939b92516698b5fa5dcfb80"
884
+ },
885
+ "execution_context": {
886
+ "environment": "glibc x86_64 / ruby 3.4.5",
887
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
888
+ "host_cpu": "x86_64",
889
+ "ruby_arch": "x86_64-linux",
890
+ "cc": null,
891
+ "make": null,
892
+ "pkg_config": null,
893
+ "rubycc_mode": "control"
894
+ },
895
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
896
+ "rubycc_worktree_dirty": true
897
+ }
898
+ ],
899
+ "rubycc": [
900
+ {
901
+ "name": "etc",
902
+ "version": "1.4.6",
903
+ "mode": "rubycc",
904
+ "status": "pass",
905
+ "reason": null,
906
+ "sanity": true,
907
+ "evidence": [
908
+ "gem_make.out:rmake",
909
+ "Makefile:CC=rubycc",
910
+ "mkmf.log:rubycc"
911
+ ],
912
+ "files": 1,
913
+ "summary": {
914
+ "line": "18 tests, 589 assertions, 0 failures, 0 errors, 0 pendings, 2 omissions, 0 notifications",
915
+ "tests": 18,
916
+ "assertions": 589,
917
+ "failures": 0,
918
+ "errors": 0,
919
+ "other": {
920
+ "omissions": 2
921
+ }
922
+ },
923
+ "environment": "glibc x86_64 / ruby 3.4.5",
924
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
925
+ "work_dir": "<VERIFY_WORK>",
926
+ "build_state": "pass",
927
+ "extension_load_state": "pass",
928
+ "suite_state": "pass",
929
+ "provenance": {
930
+ "gem_url": "https://rubygems.org/downloads/etc-1.4.6.gem",
931
+ "gem_sha256": "0f7e9e7842ea5e3c3bd9bc81746ebb8c65ea29e4c42a93520a0d638129c7de01",
932
+ "source_kind": "source_tarball",
933
+ "source_url": "https://github.com/ruby/etc/archive/refs/tags/v1.4.6.tar.gz",
934
+ "source_sha256": "6c27f946d6fa149a25d5368d987ad215c998d1dd005e114082cfc9ed08613966",
935
+ "source_relative_path": "r10-m4b/etc-1.4.6-src.tar.gz"
936
+ },
937
+ "recipe": {
938
+ "name": "etc",
939
+ "version": "1.4.6",
940
+ "source_kind": "source_tarball",
941
+ "source_url": "https://github.com/ruby/etc/archive/refs/tags/v1.4.6.tar.gz",
942
+ "runner": "test_unit",
943
+ "test_glob": "test/**/test_*.rb",
944
+ "exclude": [],
945
+ "load_paths": [
946
+ "lib",
947
+ "test/lib"
948
+ ],
949
+ "extconf_args": [],
950
+ "sos": [
951
+ {
952
+ "from": "lib/etc.so",
953
+ "to": "lib/etc.so"
954
+ }
955
+ ],
956
+ "test_deps": [
957
+ "test-unit",
958
+ "test-unit-ruby-core"
959
+ ],
960
+ "test_dep_versions": {},
961
+ "sanity": {
962
+ "requires": [
963
+ "etc"
964
+ ],
965
+ "expression": "injected_so_loaded?"
966
+ },
967
+ "recipe_fingerprint": "03aecfb644e4d1488481d11998b0f104f0ce70885cb2f25261c95abf6db5d510"
968
+ },
969
+ "execution_context": {
970
+ "environment": "glibc x86_64 / ruby 3.4.5",
971
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
972
+ "host_cpu": "x86_64",
973
+ "ruby_arch": "x86_64-linux",
974
+ "cc": null,
975
+ "make": null,
976
+ "pkg_config": null,
977
+ "rubycc_mode": "rubycc"
978
+ },
979
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
980
+ "rubycc_worktree_dirty": true
981
+ },
982
+ {
983
+ "name": "io-nonblock",
984
+ "version": "0.3.2",
985
+ "mode": "rubycc",
986
+ "status": "pass",
987
+ "reason": null,
988
+ "sanity": true,
989
+ "evidence": [
990
+ "gem_make.out:rmake",
991
+ "Makefile:CC=rubycc",
992
+ "mkmf.log:rubycc"
993
+ ],
994
+ "files": 1,
995
+ "summary": {
996
+ "line": "2 tests, 8 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
997
+ "tests": 2,
998
+ "assertions": 8,
999
+ "failures": 0,
1000
+ "errors": 0,
1001
+ "other": {}
1002
+ },
1003
+ "environment": "glibc x86_64 / ruby 3.4.5",
1004
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1005
+ "work_dir": "<VERIFY_WORK>",
1006
+ "build_state": "pass",
1007
+ "extension_load_state": "pass",
1008
+ "suite_state": "pass",
1009
+ "provenance": {
1010
+ "gem_url": "https://rubygems.org/downloads/io-nonblock-0.3.2.gem",
1011
+ "gem_sha256": "2014636edae4e32e893a3b9e6bac9d1c5b8d3af41b8cd5bcb2279a78fbef937d",
1012
+ "source_kind": "source_tarball",
1013
+ "source_url": "https://github.com/ruby/io-nonblock/archive/refs/tags/v0.3.2.tar.gz",
1014
+ "source_sha256": "dcdd60b58aca00a3a59beded015f22c4173e351a099502f292d64e651d0014b6",
1015
+ "source_relative_path": "r10-m4b/io-nonblock-0.3.2-src.tar.gz"
1016
+ },
1017
+ "recipe": {
1018
+ "name": "io-nonblock",
1019
+ "version": "0.3.2",
1020
+ "source_kind": "source_tarball",
1021
+ "source_url": "https://github.com/ruby/io-nonblock/archive/refs/tags/v0.3.2.tar.gz",
1022
+ "runner": "test_unit",
1023
+ "test_glob": "test/**/test_*.rb",
1024
+ "exclude": [],
1025
+ "load_paths": [
1026
+ "lib",
1027
+ "test/lib"
1028
+ ],
1029
+ "extconf_args": [],
1030
+ "sos": [
1031
+ {
1032
+ "from": "lib/io/nonblock.so",
1033
+ "to": "lib/io/nonblock.so"
1034
+ }
1035
+ ],
1036
+ "test_deps": [
1037
+ "test-unit",
1038
+ "test-unit-ruby-core"
1039
+ ],
1040
+ "test_dep_versions": {},
1041
+ "sanity": {
1042
+ "requires": [
1043
+ "io/nonblock"
1044
+ ],
1045
+ "expression": "injected_so_loaded?"
1046
+ },
1047
+ "recipe_fingerprint": "73a562742e67099133dfe87115e903c136cb1e2cd8cf694f81ade2eaa5de2553"
1048
+ },
1049
+ "execution_context": {
1050
+ "environment": "glibc x86_64 / ruby 3.4.5",
1051
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1052
+ "host_cpu": "x86_64",
1053
+ "ruby_arch": "x86_64-linux",
1054
+ "cc": null,
1055
+ "make": null,
1056
+ "pkg_config": null,
1057
+ "rubycc_mode": "rubycc"
1058
+ },
1059
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1060
+ "rubycc_worktree_dirty": true
1061
+ },
1062
+ {
1063
+ "name": "io-wait",
1064
+ "version": "0.4.0",
1065
+ "mode": "rubycc",
1066
+ "status": "pass",
1067
+ "reason": null,
1068
+ "sanity": true,
1069
+ "evidence": [
1070
+ "gem_make.out:rmake",
1071
+ "Makefile:CC=rubycc"
1072
+ ],
1073
+ "files": 3,
1074
+ "summary": {
1075
+ "line": "26 tests, 41 assertions, 0 failures, 0 errors, 0 pendings, 1 omissions, 0 notifications",
1076
+ "tests": 26,
1077
+ "assertions": 41,
1078
+ "failures": 0,
1079
+ "errors": 0,
1080
+ "other": {
1081
+ "omissions": 1
1082
+ }
1083
+ },
1084
+ "environment": "glibc x86_64 / ruby 3.4.5",
1085
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1086
+ "work_dir": "<VERIFY_WORK>",
1087
+ "build_state": "pass",
1088
+ "extension_load_state": "pass",
1089
+ "suite_state": "pass",
1090
+ "provenance": {
1091
+ "gem_url": "https://rubygems.org/downloads/io-wait-0.4.0.gem",
1092
+ "gem_sha256": "872c703066ae5371bf19f441b4d4991cf4f259ada548c717cadce26b256e9309",
1093
+ "source_kind": "source_tarball",
1094
+ "source_url": "https://github.com/ruby/io-wait/archive/refs/tags/v0.4.0.tar.gz",
1095
+ "source_sha256": "965254ebbafaf71cef557a2fb99a3b45edcc5ff823286d7abb920c4f4295c58c",
1096
+ "source_relative_path": "r10-m4b/io-wait-0.4.0-src.tar.gz"
1097
+ },
1098
+ "recipe": {
1099
+ "name": "io-wait",
1100
+ "version": "0.4.0",
1101
+ "source_kind": "source_tarball",
1102
+ "source_url": "https://github.com/ruby/io-wait/archive/refs/tags/v0.4.0.tar.gz",
1103
+ "runner": "test_unit",
1104
+ "test_glob": "test/**/test_*.rb",
1105
+ "exclude": [],
1106
+ "load_paths": [
1107
+ "lib",
1108
+ "test/lib"
1109
+ ],
1110
+ "extconf_args": [],
1111
+ "sos": [
1112
+ {
1113
+ "from": "lib/io/wait.so",
1114
+ "to": "lib/io/wait.so"
1115
+ }
1116
+ ],
1117
+ "test_deps": [
1118
+ "test-unit",
1119
+ "test-unit-ruby-core"
1120
+ ],
1121
+ "test_dep_versions": {},
1122
+ "sanity": {
1123
+ "requires": [
1124
+ "io/wait"
1125
+ ],
1126
+ "expression": "injected_so_loaded?"
1127
+ },
1128
+ "recipe_fingerprint": "f3d046cfa19e66fb63fa50bd4c07257c19b53327f988d8955b4cf4163773e7e3"
1129
+ },
1130
+ "execution_context": {
1131
+ "environment": "glibc x86_64 / ruby 3.4.5",
1132
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1133
+ "host_cpu": "x86_64",
1134
+ "ruby_arch": "x86_64-linux",
1135
+ "cc": null,
1136
+ "make": null,
1137
+ "pkg_config": null,
1138
+ "rubycc_mode": "rubycc"
1139
+ },
1140
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1141
+ "rubycc_worktree_dirty": true
1142
+ },
1143
+ {
1144
+ "name": "erb",
1145
+ "version": "6.0.1.1",
1146
+ "mode": "rubycc",
1147
+ "status": "pass",
1148
+ "reason": null,
1149
+ "sanity": true,
1150
+ "evidence": [
1151
+ "gem_make.out:rmake",
1152
+ "Makefile:CC=rubycc",
1153
+ "mkmf.log:rubycc"
1154
+ ],
1155
+ "files": 3,
1156
+ "summary": {
1157
+ "line": "48 tests, 143 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1158
+ "tests": 48,
1159
+ "assertions": 143,
1160
+ "failures": 0,
1161
+ "errors": 0,
1162
+ "other": {}
1163
+ },
1164
+ "environment": "glibc x86_64 / ruby 3.4.5",
1165
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1166
+ "work_dir": "<VERIFY_WORK>",
1167
+ "build_state": "pass",
1168
+ "extension_load_state": "pass",
1169
+ "suite_state": "pass",
1170
+ "provenance": {
1171
+ "gem_url": "https://rubygems.org/downloads/erb-6.0.1.1.gem",
1172
+ "gem_sha256": "ce5357460652a9a94667c5769eaffc551eea2b14a8531ac7c7b1d77b860758b9",
1173
+ "source_kind": "source_tarball",
1174
+ "source_url": "https://github.com/ruby/erb/archive/refs/tags/v6.0.1.1.tar.gz",
1175
+ "source_sha256": "ca52997eb3a6a54a1d7f76b29a10e26745a75f19503949478bfcd3816d473547",
1176
+ "source_relative_path": "r10-m4b/erb-6.0.1.1-src.tar.gz"
1177
+ },
1178
+ "recipe": {
1179
+ "name": "erb",
1180
+ "version": "6.0.1.1",
1181
+ "source_kind": "source_tarball",
1182
+ "source_url": "https://github.com/ruby/erb/archive/refs/tags/v6.0.1.1.tar.gz",
1183
+ "runner": "test_unit",
1184
+ "test_glob": "test/**/test_*.rb",
1185
+ "exclude": [],
1186
+ "load_paths": [
1187
+ "lib",
1188
+ "test/lib"
1189
+ ],
1190
+ "extconf_args": [],
1191
+ "sos": [
1192
+ {
1193
+ "from": "lib/erb/escape.so",
1194
+ "to": "lib/erb/escape.so"
1195
+ }
1196
+ ],
1197
+ "test_deps": [
1198
+ "test-unit",
1199
+ "test-unit-ruby-core"
1200
+ ],
1201
+ "test_dep_versions": {},
1202
+ "sanity": {
1203
+ "requires": [
1204
+ "erb"
1205
+ ],
1206
+ "expression": "injected_so_loaded? && ERB::Escape.instance_method(:html_escape).source_location.nil?"
1207
+ },
1208
+ "recipe_fingerprint": "eee715fad1abdccc97f0cdfed7b0f2facd4782478e78825b1bfbec1002e4c16d"
1209
+ },
1210
+ "execution_context": {
1211
+ "environment": "glibc x86_64 / ruby 3.4.5",
1212
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1213
+ "host_cpu": "x86_64",
1214
+ "ruby_arch": "x86_64-linux",
1215
+ "cc": null,
1216
+ "make": null,
1217
+ "pkg_config": null,
1218
+ "rubycc_mode": "rubycc"
1219
+ },
1220
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1221
+ "rubycc_worktree_dirty": true
1222
+ },
1223
+ {
1224
+ "name": "io-console",
1225
+ "version": "0.8.2",
1226
+ "mode": "rubycc",
1227
+ "status": "pass",
1228
+ "reason": null,
1229
+ "sanity": true,
1230
+ "evidence": [
1231
+ "gem_make.out:rmake",
1232
+ "Makefile:CC=rubycc",
1233
+ "mkmf.log:rubycc"
1234
+ ],
1235
+ "files": 2,
1236
+ "summary": {
1237
+ "line": "28 tests, 109 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1238
+ "tests": 28,
1239
+ "assertions": 109,
1240
+ "failures": 0,
1241
+ "errors": 0,
1242
+ "other": {}
1243
+ },
1244
+ "environment": "glibc x86_64 / ruby 3.4.5",
1245
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1246
+ "work_dir": "<VERIFY_WORK>",
1247
+ "build_state": "pass",
1248
+ "extension_load_state": "pass",
1249
+ "suite_state": "pass",
1250
+ "provenance": {
1251
+ "gem_url": "https://rubygems.org/downloads/io-console-0.8.2.gem",
1252
+ "gem_sha256": "d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc",
1253
+ "source_kind": "source_tarball",
1254
+ "source_url": "https://github.com/ruby/io-console/archive/refs/tags/v0.8.2.tar.gz",
1255
+ "source_sha256": "3b810de791a28d7de14cfad2890bdff0e6607f09d2da8b943fde8c6cf557536f",
1256
+ "source_relative_path": "r10-m4b/io-console-0.8.2-src.tar.gz"
1257
+ },
1258
+ "recipe": {
1259
+ "name": "io-console",
1260
+ "version": "0.8.2",
1261
+ "source_kind": "source_tarball",
1262
+ "source_url": "https://github.com/ruby/io-console/archive/refs/tags/v0.8.2.tar.gz",
1263
+ "runner": "test_unit",
1264
+ "test_glob": "test/**/test_*.rb",
1265
+ "exclude": [],
1266
+ "load_paths": [
1267
+ "lib",
1268
+ "test/lib"
1269
+ ],
1270
+ "extconf_args": [],
1271
+ "sos": [
1272
+ {
1273
+ "from": "lib/io/console.so",
1274
+ "to": "lib/io/console.so"
1275
+ }
1276
+ ],
1277
+ "test_deps": [
1278
+ "test-unit",
1279
+ "test-unit-ruby-core"
1280
+ ],
1281
+ "test_dep_versions": {},
1282
+ "sanity": {
1283
+ "requires": [
1284
+ "io/console"
1285
+ ],
1286
+ "expression": "injected_so_loaded?"
1287
+ },
1288
+ "recipe_fingerprint": "d87dd9fa824ab3084a908ceaa463d5b0167103049eb9ea5b5ccb18c1e151ec07"
1289
+ },
1290
+ "execution_context": {
1291
+ "environment": "glibc x86_64 / ruby 3.4.5",
1292
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1293
+ "host_cpu": "x86_64",
1294
+ "ruby_arch": "x86_64-linux",
1295
+ "cc": null,
1296
+ "make": null,
1297
+ "pkg_config": null,
1298
+ "rubycc_mode": "rubycc"
1299
+ },
1300
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1301
+ "rubycc_worktree_dirty": true
1302
+ },
1303
+ {
1304
+ "name": "digest",
1305
+ "version": "3.2.1",
1306
+ "mode": "rubycc",
1307
+ "status": "pass",
1308
+ "reason": null,
1309
+ "sanity": true,
1310
+ "evidence": [
1311
+ "gem_make.out:rmake",
1312
+ "Makefile:CC=rubycc",
1313
+ "mkmf.log:rubycc"
1314
+ ],
1315
+ "files": 3,
1316
+ "summary": {
1317
+ "line": "98 tests, 215 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1318
+ "tests": 98,
1319
+ "assertions": 215,
1320
+ "failures": 0,
1321
+ "errors": 0,
1322
+ "other": {}
1323
+ },
1324
+ "environment": "glibc x86_64 / ruby 3.4.5",
1325
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1326
+ "work_dir": "<VERIFY_WORK>",
1327
+ "build_state": "pass",
1328
+ "extension_load_state": "pass",
1329
+ "suite_state": "pass",
1330
+ "provenance": {
1331
+ "gem_url": "https://rubygems.org/downloads/digest-3.2.1.gem",
1332
+ "gem_sha256": "ab3312b4e272d7d5dc41c564c86a25861a1f34ac5153374199a0b74861395947",
1333
+ "source_kind": "source_tarball",
1334
+ "source_url": "https://github.com/ruby/digest/archive/refs/tags/v3.2.1.tar.gz",
1335
+ "source_sha256": "637c9bfac0a9e9afebf4a1e168250c2e3f8c42878ee2d3d3f17c8a66d8108df4",
1336
+ "source_relative_path": "r10-m4b/digest-3.2.1-src.tar.gz"
1337
+ },
1338
+ "recipe": {
1339
+ "name": "digest",
1340
+ "version": "3.2.1",
1341
+ "source_kind": "source_tarball",
1342
+ "source_url": "https://github.com/ruby/digest/archive/refs/tags/v3.2.1.tar.gz",
1343
+ "runner": "test_unit",
1344
+ "test_glob": "test/**/test_*.rb",
1345
+ "exclude": [],
1346
+ "load_paths": [
1347
+ "test",
1348
+ "test/lib",
1349
+ "lib",
1350
+ "ext/digest/lib"
1351
+ ],
1352
+ "extconf_args": [],
1353
+ "sos": [
1354
+ {
1355
+ "from": "lib/digest.so",
1356
+ "to": "lib/digest.so"
1357
+ },
1358
+ {
1359
+ "from": "lib/digest/bubblebabble.so",
1360
+ "to": "lib/digest/bubblebabble.so"
1361
+ },
1362
+ {
1363
+ "from": "lib/digest/md5.so",
1364
+ "to": "lib/digest/md5.so"
1365
+ },
1366
+ {
1367
+ "from": "lib/digest/rmd160.so",
1368
+ "to": "lib/digest/rmd160.so"
1369
+ },
1370
+ {
1371
+ "from": "lib/digest/sha1.so",
1372
+ "to": "lib/digest/sha1.so"
1373
+ },
1374
+ {
1375
+ "from": "lib/digest/sha2.so",
1376
+ "to": "lib/digest/sha2.so"
1377
+ }
1378
+ ],
1379
+ "test_deps": [
1380
+ "test-unit",
1381
+ "test-unit-ruby-core"
1382
+ ],
1383
+ "test_dep_versions": {},
1384
+ "sanity": {
1385
+ "requires": [
1386
+ "digest",
1387
+ "digest/bubblebabble",
1388
+ "digest/md5",
1389
+ "digest/rmd160",
1390
+ "digest/sha1",
1391
+ "digest/sha2"
1392
+ ],
1393
+ "expression": "injected_so_loaded?"
1394
+ },
1395
+ "recipe_fingerprint": "b089844782edb95aae78885fc534d17c131f2298f97ace9093c9f664c995469c"
1396
+ },
1397
+ "execution_context": {
1398
+ "environment": "glibc x86_64 / ruby 3.4.5",
1399
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1400
+ "host_cpu": "x86_64",
1401
+ "ruby_arch": "x86_64-linux",
1402
+ "cc": null,
1403
+ "make": null,
1404
+ "pkg_config": null,
1405
+ "rubycc_mode": "rubycc"
1406
+ },
1407
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1408
+ "rubycc_worktree_dirty": true
1409
+ },
1410
+ {
1411
+ "name": "zlib",
1412
+ "version": "3.2.3",
1413
+ "mode": "rubycc",
1414
+ "status": "pass",
1415
+ "reason": null,
1416
+ "sanity": true,
1417
+ "evidence": [
1418
+ "gem_make.out:rmake",
1419
+ "Makefile:CC=rubycc",
1420
+ "mkmf.log:rubycc"
1421
+ ],
1422
+ "files": 1,
1423
+ "summary": {
1424
+ "line": "97 tests, 540 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1425
+ "tests": 97,
1426
+ "assertions": 540,
1427
+ "failures": 0,
1428
+ "errors": 0,
1429
+ "other": {}
1430
+ },
1431
+ "environment": "glibc x86_64 / ruby 3.4.5",
1432
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1433
+ "work_dir": "<VERIFY_WORK>",
1434
+ "build_state": "pass",
1435
+ "extension_load_state": "pass",
1436
+ "suite_state": "pass",
1437
+ "provenance": {
1438
+ "gem_url": "https://rubygems.org/downloads/zlib-3.2.3.gem",
1439
+ "gem_sha256": "5bd316698b32f31a64ab910a8b6c282442ca1626a81bbd6a1674e8522e319c20",
1440
+ "source_kind": "source_tarball",
1441
+ "source_url": "https://github.com/ruby/zlib/archive/refs/tags/v3.2.3.tar.gz",
1442
+ "source_sha256": "f084546dfb04345d0bc601ba8e2d634c8738a45478c9d794588a7aa413ef1b32",
1443
+ "source_relative_path": "r10-m4b/zlib-3.2.3-src.tar.gz"
1444
+ },
1445
+ "recipe": {
1446
+ "name": "zlib",
1447
+ "version": "3.2.3",
1448
+ "source_kind": "source_tarball",
1449
+ "source_url": "https://github.com/ruby/zlib/archive/refs/tags/v3.2.3.tar.gz",
1450
+ "runner": "test_unit",
1451
+ "test_glob": "test/**/test_*.rb",
1452
+ "exclude": [],
1453
+ "load_paths": [
1454
+ "lib",
1455
+ "test/lib"
1456
+ ],
1457
+ "extconf_args": [],
1458
+ "sos": [
1459
+ {
1460
+ "from": "lib/zlib.so",
1461
+ "to": "lib/zlib.so"
1462
+ }
1463
+ ],
1464
+ "test_deps": [
1465
+ "test-unit",
1466
+ "test-unit-ruby-core"
1467
+ ],
1468
+ "test_dep_versions": {},
1469
+ "sanity": {
1470
+ "requires": [
1471
+ "zlib"
1472
+ ],
1473
+ "expression": "injected_so_loaded?"
1474
+ },
1475
+ "recipe_fingerprint": "a04ad4299270f1259683dd48df9883670db432263322679fef1b419692269b1e"
1476
+ },
1477
+ "execution_context": {
1478
+ "environment": "glibc x86_64 / ruby 3.4.5",
1479
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1480
+ "host_cpu": "x86_64",
1481
+ "ruby_arch": "x86_64-linux",
1482
+ "cc": null,
1483
+ "make": null,
1484
+ "pkg_config": null,
1485
+ "rubycc_mode": "rubycc"
1486
+ },
1487
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1488
+ "rubycc_worktree_dirty": true
1489
+ },
1490
+ {
1491
+ "name": "psych",
1492
+ "version": "5.3.1",
1493
+ "mode": "rubycc",
1494
+ "status": "pass",
1495
+ "reason": null,
1496
+ "sanity": true,
1497
+ "evidence": [
1498
+ "gem_make.out:rmake",
1499
+ "Makefile:CC=rubycc",
1500
+ "mkmf.log:rubycc"
1501
+ ],
1502
+ "files": 48,
1503
+ "summary": {
1504
+ "line": "633 tests, 1598 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1505
+ "tests": 633,
1506
+ "assertions": 1598,
1507
+ "failures": 0,
1508
+ "errors": 0,
1509
+ "other": {}
1510
+ },
1511
+ "environment": "glibc x86_64 / ruby 3.4.5",
1512
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1513
+ "work_dir": "<VERIFY_WORK>",
1514
+ "build_state": "pass",
1515
+ "extension_load_state": "pass",
1516
+ "suite_state": "pass",
1517
+ "provenance": {
1518
+ "gem_url": "https://rubygems.org/downloads/psych-5.3.1.gem",
1519
+ "gem_sha256": "eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974",
1520
+ "source_kind": "source_tarball",
1521
+ "source_url": "https://github.com/ruby/psych/archive/refs/tags/v5.3.1.tar.gz",
1522
+ "source_sha256": "513c61962045e72c7a4e53e4437701374f6f9336b98a28c28e06d58bb5e8c17d",
1523
+ "source_relative_path": "r10-m4b/psych-5.3.1-src.tar.gz"
1524
+ },
1525
+ "recipe": {
1526
+ "name": "psych",
1527
+ "version": "5.3.1",
1528
+ "source_kind": "source_tarball",
1529
+ "source_url": "https://github.com/ruby/psych/archive/refs/tags/v5.3.1.tar.gz",
1530
+ "runner": "test_unit",
1531
+ "test_glob": "test/**/test_*.rb",
1532
+ "exclude": [],
1533
+ "load_paths": [
1534
+ "lib",
1535
+ "test/lib",
1536
+ "test"
1537
+ ],
1538
+ "extconf_args": [],
1539
+ "sos": [
1540
+ {
1541
+ "from": "lib/psych.so",
1542
+ "to": "lib/psych.so"
1543
+ }
1544
+ ],
1545
+ "test_deps": [
1546
+ "test-unit",
1547
+ "test-unit-ruby-core"
1548
+ ],
1549
+ "test_dep_versions": {},
1550
+ "sanity": {
1551
+ "requires": [
1552
+ "psych"
1553
+ ],
1554
+ "expression": "injected_so_loaded?"
1555
+ },
1556
+ "recipe_fingerprint": "5a35ced11ac74e29038649138960e978ea60f91b9c9a4dc6f53211a76e5b6e2c"
1557
+ },
1558
+ "execution_context": {
1559
+ "environment": "glibc x86_64 / ruby 3.4.5",
1560
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1561
+ "host_cpu": "x86_64",
1562
+ "ruby_arch": "x86_64-linux",
1563
+ "cc": null,
1564
+ "make": null,
1565
+ "pkg_config": null,
1566
+ "rubycc_mode": "rubycc"
1567
+ },
1568
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1569
+ "rubycc_worktree_dirty": true
1570
+ },
1571
+ {
1572
+ "name": "syslog",
1573
+ "version": "0.3.0",
1574
+ "mode": "rubycc",
1575
+ "status": "pass",
1576
+ "reason": null,
1577
+ "sanity": true,
1578
+ "evidence": [
1579
+ "gem_make.out:rmake",
1580
+ "Makefile:CC=rubycc",
1581
+ "mkmf.log:rubycc"
1582
+ ],
1583
+ "files": 2,
1584
+ "summary": {
1585
+ "line": "32 tests, 234 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications",
1586
+ "tests": 32,
1587
+ "assertions": 234,
1588
+ "failures": 0,
1589
+ "errors": 0,
1590
+ "other": {}
1591
+ },
1592
+ "environment": "glibc x86_64 / ruby 3.4.5",
1593
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1594
+ "work_dir": "<VERIFY_WORK>",
1595
+ "build_state": "pass",
1596
+ "extension_load_state": "pass",
1597
+ "suite_state": "pass",
1598
+ "provenance": {
1599
+ "gem_url": "https://rubygems.org/downloads/syslog-0.3.0.gem",
1600
+ "gem_sha256": "4dfe6e7bd5adb6383706bb4ad5a05da1f3a09917a507e8f913c73287085c7408",
1601
+ "source_kind": "source_tarball",
1602
+ "source_url": "https://github.com/ruby/syslog/archive/refs/tags/v0.3.0.tar.gz",
1603
+ "source_sha256": "d7e2862d99326e1a5908a203a57e57425a7a3cc20d0a4b4bc2d0e52085aa4d9b",
1604
+ "source_relative_path": "r10-m4b/syslog-0.3.0-src.tar.gz"
1605
+ },
1606
+ "recipe": {
1607
+ "name": "syslog",
1608
+ "version": "0.3.0",
1609
+ "source_kind": "source_tarball",
1610
+ "source_url": "https://github.com/ruby/syslog/archive/refs/tags/v0.3.0.tar.gz",
1611
+ "runner": "test_unit",
1612
+ "test_glob": "test/**/test_*.rb",
1613
+ "exclude": [],
1614
+ "load_paths": [
1615
+ "lib",
1616
+ "test"
1617
+ ],
1618
+ "extconf_args": [],
1619
+ "sos": [
1620
+ {
1621
+ "from": "lib/syslog_ext.so",
1622
+ "to": "lib/syslog_ext.so"
1623
+ }
1624
+ ],
1625
+ "test_deps": [
1626
+ "test-unit"
1627
+ ],
1628
+ "test_dep_versions": {},
1629
+ "sanity": {
1630
+ "requires": [
1631
+ "syslog"
1632
+ ],
1633
+ "expression": "injected_so_loaded?"
1634
+ },
1635
+ "recipe_fingerprint": "b1de836e4fef8f3460c35a4c1c0139e31df16d6a9d13fe2639fc4f6b191a4eec"
1636
+ },
1637
+ "execution_context": {
1638
+ "environment": "glibc x86_64 / ruby 3.4.5",
1639
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1640
+ "host_cpu": "x86_64",
1641
+ "ruby_arch": "x86_64-linux",
1642
+ "cc": null,
1643
+ "make": null,
1644
+ "pkg_config": null,
1645
+ "rubycc_mode": "rubycc"
1646
+ },
1647
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1648
+ "rubycc_worktree_dirty": true
1649
+ },
1650
+ {
1651
+ "name": "http_parser.rb",
1652
+ "version": "0.8.1",
1653
+ "mode": "rubycc",
1654
+ "status": "pass",
1655
+ "reason": null,
1656
+ "sanity": true,
1657
+ "evidence": [
1658
+ "gem_make.out:rmake",
1659
+ "Makefile:CC=rubycc"
1660
+ ],
1661
+ "files": 1,
1662
+ "summary": {
1663
+ "line": "72 examples, 0 failures",
1664
+ "tests": 72,
1665
+ "assertions": null,
1666
+ "failures": 0,
1667
+ "errors": 0,
1668
+ "other": {}
1669
+ },
1670
+ "environment": "glibc x86_64 / ruby 3.4.5",
1671
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1672
+ "work_dir": "<VERIFY_WORK>",
1673
+ "build_state": "pass",
1674
+ "extension_load_state": "pass",
1675
+ "suite_state": "pass",
1676
+ "provenance": {
1677
+ "gem_url": "https://rubygems.org/downloads/http_parser.rb-0.8.1.gem",
1678
+ "gem_sha256": "9ae8df145b39aa5398b2f90090d651c67bd8e2ebfe4507c966579f641e11097a",
1679
+ "source_kind": "source_tarball",
1680
+ "source_url": "https://github.com/tmm1/http_parser.rb/archive/refs/tags/v0.8.1.tar.gz",
1681
+ "source_sha256": "3ba6e0949d540dd915d5b9fb62bd06668c8ecd2a799785b192256fc117f937ae",
1682
+ "source_relative_path": "r10-m4b/http_parser.rb-0.8.1-src.tar.gz"
1683
+ },
1684
+ "recipe": {
1685
+ "name": "http_parser.rb",
1686
+ "version": "0.8.1",
1687
+ "source_kind": "source_tarball",
1688
+ "source_url": "https://github.com/tmm1/http_parser.rb/archive/refs/tags/v0.8.1.tar.gz",
1689
+ "runner": "rspec",
1690
+ "test_glob": "spec/**/*_spec.rb",
1691
+ "exclude": [],
1692
+ "load_paths": [
1693
+ "lib",
1694
+ "spec"
1695
+ ],
1696
+ "extconf_args": [],
1697
+ "sos": [
1698
+ {
1699
+ "from": "lib/ruby_http_parser.so",
1700
+ "to": "lib/ruby_http_parser.so"
1701
+ }
1702
+ ],
1703
+ "test_deps": [
1704
+ "rspec"
1705
+ ],
1706
+ "test_dep_versions": {},
1707
+ "sanity": {
1708
+ "requires": [
1709
+ "http_parser"
1710
+ ],
1711
+ "expression": "injected_so_loaded?"
1712
+ },
1713
+ "recipe_fingerprint": "05d3dc56da07767ed2af5f7d40c2cb55002989b8787fe788dd9a54dbc537fe29"
1714
+ },
1715
+ "execution_context": {
1716
+ "environment": "glibc x86_64 / ruby 3.4.5",
1717
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1718
+ "host_cpu": "x86_64",
1719
+ "ruby_arch": "x86_64-linux",
1720
+ "cc": null,
1721
+ "make": null,
1722
+ "pkg_config": null,
1723
+ "rubycc_mode": "rubycc"
1724
+ },
1725
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1726
+ "rubycc_worktree_dirty": true
1727
+ },
1728
+ {
1729
+ "name": "websocket-driver",
1730
+ "version": "0.8.2",
1731
+ "mode": "rubycc",
1732
+ "status": "pass",
1733
+ "reason": null,
1734
+ "sanity": true,
1735
+ "evidence": [
1736
+ "gem_make.out:rmake",
1737
+ "Makefile:CC=rubycc"
1738
+ ],
1739
+ "files": 4,
1740
+ "summary": {
1741
+ "line": "196 examples, 0 failures",
1742
+ "tests": 196,
1743
+ "assertions": null,
1744
+ "failures": 0,
1745
+ "errors": 0,
1746
+ "other": {}
1747
+ },
1748
+ "environment": "glibc x86_64 / ruby 3.4.5",
1749
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1750
+ "work_dir": "<VERIFY_WORK>",
1751
+ "build_state": "pass",
1752
+ "extension_load_state": "pass",
1753
+ "suite_state": "pass",
1754
+ "provenance": {
1755
+ "gem_url": "https://rubygems.org/downloads/websocket-driver-0.8.2.gem",
1756
+ "gem_sha256": "97c556b019bf3410b4961002ac501621e9322d3f8a7bc02161a09301cc4c4146",
1757
+ "source_kind": "source_tarball",
1758
+ "source_url": "https://github.com/faye/websocket-driver-ruby/archive/refs/tags/0.8.2.tar.gz",
1759
+ "source_sha256": "0ee8ed7d59f838bb5b6f3dfb7a606a64e32172b614dab1e325f6df9bdf943772",
1760
+ "source_relative_path": "r10-m4b/websocket-driver-0.8.2-src.tar.gz"
1761
+ },
1762
+ "recipe": {
1763
+ "name": "websocket-driver",
1764
+ "version": "0.8.2",
1765
+ "source_kind": "source_tarball",
1766
+ "source_url": "https://github.com/faye/websocket-driver-ruby/archive/refs/tags/0.8.2.tar.gz",
1767
+ "runner": "rspec",
1768
+ "test_glob": "spec/**/*_spec.rb",
1769
+ "exclude": [],
1770
+ "load_paths": [
1771
+ "lib",
1772
+ "spec"
1773
+ ],
1774
+ "extconf_args": [],
1775
+ "sos": [
1776
+ {
1777
+ "from": "lib/websocket_mask.so",
1778
+ "to": "lib/websocket_mask.so"
1779
+ }
1780
+ ],
1781
+ "test_deps": [
1782
+ "rspec"
1783
+ ],
1784
+ "test_dep_versions": {},
1785
+ "sanity": {
1786
+ "requires": [
1787
+ "websocket/driver"
1788
+ ],
1789
+ "expression": "injected_so_loaded?"
1790
+ },
1791
+ "recipe_fingerprint": "6ce2b3c9430fd592954c83e39d394ea1625d00134939b92516698b5fa5dcfb80"
1792
+ },
1793
+ "execution_context": {
1794
+ "environment": "glibc x86_64 / ruby 3.4.5",
1795
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1796
+ "host_cpu": "x86_64",
1797
+ "ruby_arch": "x86_64-linux",
1798
+ "cc": null,
1799
+ "make": null,
1800
+ "pkg_config": null,
1801
+ "rubycc_mode": "rubycc"
1802
+ },
1803
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1804
+ "rubycc_worktree_dirty": true
1805
+ }
1806
+ ],
1807
+ "execution_context": {
1808
+ "environment": "glibc x86_64 / ruby 3.4.5",
1809
+ "ruby": "ruby 3.4.5 (2025-07-16 revision 20cda200d3) +PRISM [x86_64-linux]",
1810
+ "host_cpu": "x86_64",
1811
+ "ruby_arch": "x86_64-linux",
1812
+ "cc": null,
1813
+ "make": null,
1814
+ "pkg_config": null
1815
+ },
1816
+ "rubycc_revision": "8a371237d5813d63d2795fe7777f0a666b238031",
1817
+ "rubycc_worktree_dirty": true
1818
+ }