Skip to content

Commit d7feb1d

Browse files
committed
Add Metal tests.
1 parent 11067ee commit d7feb1d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

test/macmetal/dummy

9.56 KB
Binary file not shown.

test/runtests.jl

+14
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,27 @@ function test_fat_libfoo(file)
169169
@test n64 == 1
170170
end
171171

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+
172185
# Run ELF tests
173186
test_libfoo_and_fooifier("./linux32/fooifier", "./linux32/libfoo.so")
174187
test_libfoo_and_fooifier("./linux64/fooifier", "./linux64/libfoo.so")
175188

176189
# Run MachO tests
177190
test_libfoo_and_fooifier("./mac64/fooifier", "./mac64/libfoo.dylib")
178191
test_fat_libfoo("./mac64/libfoo_fat.dylib")
192+
test_metal("./macmetal/dummy")
179193

180194
# Run COFF tests
181195
test_libfoo_and_fooifier("./win32/fooifier.exe", "./win32/libfoo.dll")

0 commit comments

Comments
 (0)