From 25217143a6a78d893bf41fe5e0efe22753f7c56f Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Thu, 14 Jul 2016 09:05:36 +0200 Subject: [PATCH] Skip LN_NEWUOA_BOUND in tests Fails randomly on msvc --- test/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1caf7d4..50dfb17 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -18,6 +18,10 @@ foreach (algo_index RANGE 29)# 42 if (algo_index STREQUAL 10) set (enable_ FALSE) endif () + # LN_NEWUOA_BOUND timeouts on msvc + if (algo_index STREQUAL 27) + set (enable_ FALSE) + endif () if (enable_) add_test (NAME testopt_algo${algo_index}_obj${obj_index} COMMAND testopt -a ${algo_index} -o ${obj_index}) endif () -- 2.30.2