From b9cc266a89312dd63e6d2eb591286a5c56c8fafe Mon Sep 17 00:00:00 2001 From: Nicolas Mellado Date: Fri, 16 Jun 2023 16:12:28 +0200 Subject: [PATCH] [tests] Basket split in 3 different tests enable long double on windows --- tests/src/basket.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/src/basket.cpp b/tests/src/basket.cpp index f89d87b04..9bb0d3f71 100644 --- a/tests/src/basket.cpp +++ b/tests/src/basket.cpp @@ -13,6 +13,8 @@ #include "../common/testing.h" #include "../common/testUtils.h" +#include "../split_test_helper.h" + #include #include #include @@ -292,16 +294,14 @@ int main(int argc, char** argv) } cout << "Test Basket functions in 3 dimensions: float" << flush; - callSubTests(); + CALL_SUBTEST_1((callSubTests())); cout << " (ok), double" << flush; - callSubTests(); + CALL_SUBTEST_2((callSubTests())); cout << " (ok)" << flush; // don't know why, but we have problems when using the kdtree with long doubles on windows -#ifndef WIN32 cout << ", long double" << flush; - callSubTests(); + CALL_SUBTEST_3((callSubTests())); cout << " (ok)" << endl; -#endif // cout << "Test Basket functions in 4 dimensions..." << endl; // callSubTests();