@@ -61,28 +61,28 @@ function test_runtests()
6161 MOI. Test. runtests(
6262 model,
6363 config,
64- exclude = String[
64+ exclude = Union{ String, Regex} [
6565 " test_attribute_SolverVersion" ,
6666 # Expected test failures:
6767 # MathOptInterface.jl issue #1431
6868 " test_model_LowerBoundAlreadySet" ,
6969 " test_model_UpperBoundAlreadySet" ,
7070 # FIXME
7171 # See https://github.com/jump-dev/MathOptInterface.jl/issues/1773
72- " test_infeasible_MAX_SENSE" ,
73- " test_infeasible_MAX_SENSE_offset" ,
74- " test_infeasible_MIN_SENSE" ,
75- " test_infeasible_MIN_SENSE_offset" ,
76- " test_infeasible_affine_MAX_SENSE" ,
77- " test_infeasible_affine_MAX_SENSE_offset" ,
78- " test_infeasible_affine_MIN_SENSE" ,
79- " test_infeasible_affine_MIN_SENSE_offset" ,
72+ r" ^ test_infeasible_MAX_SENSE$ " ,
73+ r " test_infeasible_MAX_SENSE_offset$ " ,
74+ r" ^ test_infeasible_MIN_SENSE$ " ,
75+ r " test_infeasible_MIN_SENSE_offset$ " ,
76+ r" ^ test_infeasible_affine_MAX_SENSE$ " ,
77+ r " test_infeasible_affine_MAX_SENSE_offset$ " ,
78+ r" ^ test_infeasible_affine_MIN_SENSE$ " ,
79+ r " test_infeasible_affine_MIN_SENSE_offset$ " ,
8080 # FIXME
8181 # See https://github.com/jump-dev/MathOptInterface.jl/issues/1759
82- " test_unbounded_MAX_SENSE" ,
83- " test_unbounded_MAX_SENSE_offset" ,
84- " test_unbounded_MIN_SENSE" ,
85- " test_unbounded_MIN_SENSE_offset" ,
82+ r " test_unbounded_MAX_SENSE$ " ,
83+ r " test_unbounded_MAX_SENSE_offset$ " ,
84+ r" ^ test_unbounded_MIN_SENSE$ " ,
85+ r " test_unbounded_MIN_SENSE_offset$ " ,
8686 # FIXME
8787 " test_model_copy_to_UnsupportedAttribute" ,
8888 # Segfault
0 commit comments