From f4d816dcf86a970af8b830e72a30b77cadfd2123 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Sun, 11 Aug 2013 18:40:57 +0000 Subject: [PATCH] Disabled testSmartProjectionFactor and made print message about this --- .../slam/tests/testSmartProjectionFactor.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/gtsam_unstable/slam/tests/testSmartProjectionFactor.cpp b/gtsam_unstable/slam/tests/testSmartProjectionFactor.cpp index ef3be9d83..9dfb8b48a 100644 --- a/gtsam_unstable/slam/tests/testSmartProjectionFactor.cpp +++ b/gtsam_unstable/slam/tests/testSmartProjectionFactor.cpp @@ -16,7 +16,16 @@ * @date Nov 2009 */ -#include +#include +#include + +TEST(SmartProjectionFactor, disabled) +{ + CHECK(("*** testSmartProjectionFactor is disabled *** - Needs conversion for unordered", 0)); +} + +#if 0 + #include #include #include @@ -35,7 +44,6 @@ #include #include #include -#include #include @@ -384,6 +392,7 @@ TEST( SmartProjectionFactor, Hessian ){ } +#endif /* ************************************************************************* */ int main() { TestResult tr; return TestRegistry::runAllTests(tr); }