Skip to content

Commit

Permalink
Merge pull request #2505 from SergioRAgostinho/enable-tests-appveyor
Browse files Browse the repository at this point in the history
Enable tests_2d and tests_io in AppVeyor.
  • Loading branch information
taketwo authored Oct 7, 2018
2 parents 528da7f + 4e21af4 commit 60151dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,9 @@ build_script:
-DBUILD_global_tests=ON
-DBUILD_simulation=OFF
-DBUILD_tools=OFF
-DBUILD_tests_2d=OFF
-DBUILD_tests_common=OFF
-DBUILD_tests_features=OFF
-DBUILD_tests_filters=OFF
-DBUILD_tests_io=OFF
..
- cmake --build . --config %CONFIGURATION%
- ctest -C %CONFIGURATION% -V
Expand Down
2 changes: 2 additions & 0 deletions 2d/include/pcl/2d/edge.h
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ namespace pcl
{
input_ = input;
}

EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};
}
#include <pcl/2d/impl/edge.hpp>
Expand Down
8 changes: 6 additions & 2 deletions test/io/test_grabbers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ TEST (PCL, ImageGrabberTIFF)
boost::this_thread::sleep (boost::posix_time::microseconds (10000));
if (++niter > 100)
{
ASSERT_TRUE (false);
#ifdef PCL_BUILT_WITH_VTK
FAIL ();
#endif
return;
}
}
Expand Down Expand Up @@ -398,7 +400,9 @@ TEST (PCL, ImageGrabberSetIntrinsicsTIFF)
boost::this_thread::sleep (boost::posix_time::microseconds (10000));
if (++niter > 100)
{
ASSERT_TRUE (false);
#ifdef PCL_BUILT_WITH_VTK
FAIL ();
#endif
return;
}
}
Expand Down

0 comments on commit 60151dc

Please sign in to comment.