view benchmark/make.jl @ 1515:b2eaa1ad19c8 feature/grids/componentview

Move correctness tests of componentview to the tests for ArrayComponentView
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 20 Mar 2024 16:17:53 +0100
parents 6ae2ec4cef5a
children
line wrap: on
line source

rev = nothing
baseline = nothing
target = nothing

if "--rev" ∈ ARGS
    i = findlast(==("--rev"), ARGS)
    rev = ARGS[i+1]
end

if "--target" ∈ ARGS
    i = findlast(==("--target"), ARGS)
    target = ARGS[i+1]
end

if "--baseline" ∈ ARGS
    i = findlast(==("--baseline"), ARGS)
    baseline = ARGS[i+1]
end

include("benchmark_utils.jl")
main(;rev, target, baseline)