@@ -30,20 +30,20 @@ function test_runtests()
30
30
@test model. optimizer. model. model_cache isa
31
31
MOI. Utilities. UniversalFallback{ECOS. OptimizerCache}
32
32
MOI. set (model, MOI. Silent (), true )
33
- exclude = String [
33
+ exclude = [
34
34
# ZerosBridge does not support ConstraintDual. These are tested below in
35
35
# test_runtests_ZerosBridge
36
- " test_conic_RotatedSecondOrderCone_INFEASIBLE_2" ,
37
- " test_conic_linear_VectorOfVariables_2" ,
38
- " test_linear_integration" ,
39
- " test_quadratic_constraint_GreaterThan" ,
40
- " test_quadratic_constraint_LessThan" ,
36
+ r " test_conic_RotatedSecondOrderCone_INFEASIBLE_2$ " ,
37
+ r " test_conic_linear_VectorOfVariables_2$ " ,
38
+ r " test_linear_integration$ " ,
39
+ r " test_quadratic_constraint_GreaterThan$ " ,
40
+ r " test_quadratic_constraint_LessThan$ " ,
41
41
]
42
42
if Sys. WORD_SIZE == 32
43
43
# These tests fail on x86 Linux, returning ITERATION_LIMIT instead of
44
44
# proving {primal,dual}_INFEASIBLE.
45
- push! (exclude, " test_conic_linear_INFEASIBLE" )
46
- push! (exclude, " test_solve_TerminationStatus_DUAL_INFEASIBLE" )
45
+ push! (exclude, r " test_conic_linear_INFEASIBLE$ " )
46
+ push! (exclude, r " test_solve_TerminationStatus_DUAL_INFEASIBLE$ " )
47
47
end
48
48
MOI. Test. runtests (
49
49
model,
@@ -82,13 +82,13 @@ function test_runtests_ZerosBridge()
82
82
MOI. ObjectiveBound,
83
83
],
84
84
),
85
- include = String [
85
+ include = [
86
86
# ZerosBridge does not support ConstraintDual
87
- " test_conic_RotatedSecondOrderCone_INFEASIBLE_2" ,
88
- " test_conic_linear_VectorOfVariables_2" ,
89
- " test_linear_integration" ,
90
- " test_quadratic_constraint_GreaterThan" ,
91
- " test_quadratic_constraint_LessThan" ,
87
+ r " test_conic_RotatedSecondOrderCone_INFEASIBLE_2" ,
88
+ r " test_conic_linear_VectorOfVariables_2" ,
89
+ r " test_linear_integration" ,
90
+ r " test_quadratic_constraint_GreaterThan" ,
91
+ r " test_quadratic_constraint_LessThan" ,
92
92
],
93
93
)
94
94
return
0 commit comments