Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests] Basket #96

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/src/basket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#include "../common/testing.h"
#include "../common/testUtils.h"

#include "../split_test_helper.h"

#include <Ponca/src/Fitting/basket.h>
#include <Ponca/src/Fitting/orientedSphereFit.h>
#include <Ponca/src/Fitting/covariancePlaneFit.h>
Expand Down Expand Up @@ -292,16 +294,14 @@ int main(int argc, char** argv)
}

cout << "Test Basket functions in 3 dimensions: float" << flush;
callSubTests<float, 3>();
CALL_SUBTEST_1((callSubTests<float, 3>()));
cout << " (ok), double" << flush;
callSubTests<double, 3>();
CALL_SUBTEST_2((callSubTests<double, 3>()));
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<long double, 3>();
CALL_SUBTEST_3((callSubTests<long double, 3>()));
cout << " (ok)" << endl;
#endif

// cout << "Test Basket functions in 4 dimensions..." << endl;
// callSubTests<float, 4>();
Expand Down