120120 broken_tests = Dict (alg => Int[] for alg in alg_ops)
121121 broken_tests[alg_ops[1 ]] = [1 , 2 , 3 , 5 , 21 ]
122122 if Sys. isapple ()
123- broken_tests[alg_ops[2 ]] = [1 , 2 , 3 , 5 , 6 , 21 ]
123+ if VERSION ≥ v " 1.11-"
124+ broken_tests[alg_ops[2 ]] = [1 , 2 , 3 , 5 , 6 , 11 , 21 ]
125+ else
126+ broken_tests[alg_ops[2 ]] = [1 , 2 , 3 , 5 , 6 , 21 ]
127+ end
124128 else
125129 broken_tests[alg_ops[2 ]] = [1 , 2 , 3 , 5 , 6 , 11 , 21 ]
126130 end
@@ -143,11 +147,16 @@ end
143147 if Sys. isapple ()
144148 broken_tests[alg_ops[1 ]] = [1 , 5 , 11 ]
145149 broken_tests[alg_ops[3 ]] = [1 , 5 , 6 , 9 , 11 ]
150+ if VERSION ≥ v " 1.11-"
151+ broken_tests[alg_ops[5 ]] = [1 , 4 , 5 , 11 ]
152+ else
153+ broken_tests[alg_ops[5 ]] = [1 , 5 , 11 ]
154+ end
146155 else
147156 broken_tests[alg_ops[1 ]] = [1 , 5 , 11 , 15 ]
148157 broken_tests[alg_ops[3 ]] = [1 , 5 , 9 , 11 , 16 ]
158+ broken_tests[alg_ops[5 ]] = [1 , 5 , 11 ]
149159 end
150- broken_tests[alg_ops[5 ]] = [1 , 5 , 11 ]
151160
152161 test_on_library (problems, dicts, alg_ops, broken_tests, Sys. isapple () ? 1e-3 : 1e-4 )
153162end
0 commit comments