From bc752351504ef3a68d97d89f4d1bbb9d3dfed016 Mon Sep 17 00:00:00 2001 From: Andrew Tribick Date: Sat, 30 Apr 2022 18:40:38 +0200 Subject: [PATCH] Skip testing externally-provided charconv --- test/unit/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/CMakeLists.txt b/test/unit/CMakeLists.txt index f73674d14..817c7da41 100644 --- a/test/unit/CMakeLists.txt +++ b/test/unit/CMakeLists.txt @@ -1,4 +1,6 @@ -test_case(charconv_compat) +if(NOT HAVE_FLOAT_CHARCONV) + test_case(charconv_compat) +endif() test_case(greek) test_case(hash) test_case(logger)