master-thesis/package/test/runtests.jl

14 lines
434 B
Julia
Raw Permalink Normal View History

2024-07-06 12:05:26 +02:00
using ExpressionExecutorCuda
using Test
const baseFolder = dirname(dirname(pathof(ExpressionExecutorCuda)))
include(joinpath(baseFolder, "src", "ExpressionProcessing.jl"))
include(joinpath(baseFolder, "src", "Interpreter.jl"))
2024-09-28 11:41:13 +02:00
include(joinpath(baseFolder, "src", "Transpiler.jl"))
2024-07-06 12:05:26 +02:00
@testset "ExpressionExecutorCuda.jl" begin
include("ExpressionProcessingTests.jl")
include("InterpreterTests.jl")
2024-09-28 11:41:13 +02:00
include("TranspilerTests.jl")
2024-07-06 12:05:26 +02:00
end