1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ole Streicher <olebole@debian.org>
Date: Sat, 30 Dec 2017 14:03:40 +0100
Subject: Disable power_method test
This test failed on i386. Upstream issue:
https://github.com/basp-group/sopt/issues/20
---
cpp/tests/CMakeLists.txt | 1 -
1 file changed, 1 deletion(-)
diff --git a/cpp/tests/CMakeLists.txt b/cpp/tests/CMakeLists.txt
index 4292a56..326f7fe 100644
--- a/cpp/tests/CMakeLists.txt
+++ b/cpp/tests/CMakeLists.txt
@@ -30,7 +30,6 @@ add_catch_test(padmm LIBRARIES sopt)
add_catch_test(forward_backward LIBRARIES sopt tools_for_tests)
add_catch_test(padmm_warm_start LIBRARIES sopt)
add_catch_test(reweighted LIBRARIES sopt)
-add_catch_test(power_method LIBRARIES sopt)
add_catch_test(primal_dual LIBRARIES sopt)
add_catch_test(credible_region LIBRARIES sopt)
add_catch_test(bisection_method LIBRARIES sopt)
|