diff benchmark/make.jl @ 1395:bdcdbd4ea9cd feature/boundary_conditions

Merge with default. Comment out broken tests for boundary_conditions at sat
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Wed, 26 Jul 2023 21:35:50 +0200
parents 6ae2ec4cef5a
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/benchmark/make.jl	Wed Jul 26 21:35:50 2023 +0200
@@ -0,0 +1,21 @@
+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)