Skip to content

Commit

Permalink
Skip segfaulting test on macos (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Sep 8, 2023
1 parent 3eb89fc commit 40c4c9f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/MOI_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
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)
Expand Down Expand Up @@ -152,8 +151,8 @@ function test_PrimalStatus()
end

function test_issue_187()
if Sys.iswindows() || Sys.islinux()
# This test segfaults on Windows and Linux
if true
# This test segfaults (unreliably) on all platforms
@test_broken 1 == 2
return
end
Expand Down

0 comments on commit 40c4c9f

Please sign in to comment.