From 8041dc9f353e4d1bde4a4d48975c69a4f855d7dd Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Thu, 6 Sep 2018 16:48:17 +0200 Subject: [PATCH] Use deterministic test seed --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 85fc2ea..4154eb9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -32,7 +32,7 @@ foreach (algo_index RANGE 29)# 43 set (enable_ FALSE) endif () if (enable_) - add_test (NAME testopt_algo${algo_index}_obj${obj_index} COMMAND testopt -a ${algo_index} -o ${obj_index}) + add_test (NAME testopt_algo${algo_index}_obj${obj_index} COMMAND testopt -r 0 -a ${algo_index} -o ${obj_index}) if (CMAKE_HOST_SYSTEM_NAME MATCHES Windows) set_tests_properties (testopt_algo${algo_index}_obj${obj_index} PROPERTIES ENVIRONMENT "PATH=${PROJECT_BINARY_DIR}\\${CMAKE_BUILD_TYPE};$ENV{PATH}") # to load dll endif () -- 2.30.2