From 5958fe3069351999034992040027bdaee488b9af Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 8 Sep 2023 12:06:57 +1200 Subject: [PATCH] WIP: diagnose segfault on macos --- test/MOI_wrapper.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/MOI_wrapper.jl b/test/MOI_wrapper.jl index c2379f8..aad9080 100644 --- a/test/MOI_wrapper.jl +++ b/test/MOI_wrapper.jl @@ -6,15 +6,15 @@ module TestMOIWrapper using Test -using MathOptInterface -import Cbc -const MOI = MathOptInterface +import Cbc +import MathOptInterface as MOI function runtests() for name in names(@__MODULE__; all = true) if startswith("$(name)", "test_") @testset "$(name)" begin + @show name getfield(@__MODULE__, name)() end end