From 94f91720c0462c869c6d8e7b9e4f200bfb82a34d Mon Sep 17 00:00:00 2001 From: Daniel Donenfeld Date: Mon, 11 Feb 2019 15:54:42 -0800 Subject: [PATCH] Reenable asm tests by making ASM_TESTS_ENABLED true by default --- tests/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 5afcd12..e6c79a6 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -247,6 +247,10 @@ function(add_gsl_asm_test name) set_property(TARGET ${name}_asm PROPERTY FOLDER "GSL_asm_tests") endfunction() +if(NOT DEFINED ASM_TESTS_ENABLED) + set(ASM_TESTS_ENABLED TRUE) +endif() + if(ASM_TESTS_ENABLED) add_gsl_asm_test(span_tests) add_gsl_asm_test(span_compile_only)