2024-07-06 12:05:26 +02:00
|
|
|
using ExpressionExecutorCuda
|
|
|
|
using Test
|
|
|
|
|
2024-07-14 15:08:05 +02:00
|
|
|
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-14 15:08:05 +02:00
|
|
|
|
2024-07-06 12:05:26 +02:00
|
|
|
@testset "ExpressionExecutorCuda.jl" begin
|
2024-07-14 15:08:05 +02:00
|
|
|
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
|