File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -169,13 +169,27 @@ function test_fat_libfoo(file)
169
169
@test n64 == 1
170
170
end
171
171
172
+ function test_metal (file)
173
+ oh = readmeta (open (file, " r" ))
174
+ @test isa (oh, FatMachOHandle)
175
+ @test length (oh) == 2
176
+
177
+ arch = oh[1 ]
178
+ @test arch. header isa MachO. MachOHeader64
179
+ @test findfirst (Sections (arch), " __TEXT,__compute" ) != = nothing
180
+
181
+ arch = oh[2 ]
182
+ @test arch. header isa MachO. MetallibHeader
183
+ end
184
+
172
185
# Run ELF tests
173
186
test_libfoo_and_fooifier (" ./linux32/fooifier" , " ./linux32/libfoo.so" )
174
187
test_libfoo_and_fooifier (" ./linux64/fooifier" , " ./linux64/libfoo.so" )
175
188
176
189
# Run MachO tests
177
190
test_libfoo_and_fooifier (" ./mac64/fooifier" , " ./mac64/libfoo.dylib" )
178
191
test_fat_libfoo (" ./mac64/libfoo_fat.dylib" )
192
+ test_metal (" ./macmetal/dummy" )
179
193
180
194
# Run COFF tests
181
195
test_libfoo_and_fooifier (" ./win32/fooifier.exe" , " ./win32/libfoo.dll" )
You can’t perform that action at this time.
0 commit comments