master-thesis/package/test/runtests.jl
Daniel 690ee33db1
Some checks are pending
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.10) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.6) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, pre) (push) Waiting to run
benchmarks: started preparing benchmarks
2025-03-29 12:01:06 +01:00

23 lines
634 B
Julia

using ExpressionExecutorCuda
using Test
const baseFolder = dirname(dirname(pathof(ExpressionExecutorCuda)))
include(joinpath(baseFolder, "src", "Utils.jl"))
include(joinpath(baseFolder, "src", "ExpressionProcessing.jl"))
include(joinpath(baseFolder, "src", "Interpreter.jl"))
include(joinpath(baseFolder, "src", "Transpiler.jl"))
@testset "Functionality tests" begin
# include("ExpressionProcessingTests.jl")
# include("InterpreterTests.jl")
# include("TranspilerTests.jl")
end
# @testset "CPU Interpreter" begin
# include("CpuInterpreterTests.jl")
# end
@testset "Performance tests" begin
include("PerformanceTests.jl")
end