-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathexamples.jl
31 lines (28 loc) · 905 Bytes
/
examples.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function find_sources(path::String, sources = String[])
if isdir(path)
for entry in readdir(path)
find_sources(joinpath(path, entry), sources)
end
elseif endswith(path, ".jl")
push!(sources, path)
end
return sources
end
function examples_testsuite(backend_str)
@testset "examples" begin
examples_dir = joinpath(@__DIR__, "..", "examples")
examples = find_sources(examples_dir)
filter!(file -> readline(file) != "# EXCLUDE FROM TESTING", examples)
if backend_str == "ROCM"
filter!(file -> occursin("# INCLUDE ROCM", String(read(file))), examples)
end
@testset "$(basename(example))" for example in examples
@eval module $(gensym())
backend_str = $backend_str
include($example)
end
@test true
end
end
return
end