Skip to content

Commit

Permalink
added ifdef condition
Browse files Browse the repository at this point in the history
  • Loading branch information
venkat0907 committed Aug 9, 2023
1 parent e3d2b77 commit c14e27b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base/test/imageviewermodule_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ BOOST_AUTO_TEST_CASE(Dma_Renderer_Rawimage,*boost::unit_test::disabled())

BOOST_AUTO_TEST_CASE(open_close_window, *boost::unit_test::disabled())
{
#if defined(__arm__) || defined(__aarch64__)
NvV4L2CameraProps nvCamProps(640,360, 10);
auto source = boost::shared_ptr<Module>(new NvV4L2Camera(nvCamProps));

Expand Down Expand Up @@ -104,7 +105,8 @@ BOOST_AUTO_TEST_CASE(open_close_window, *boost::unit_test::disabled())
p.stop();
p.term();

p.wait_for_all();
p.wait_for_all();
#endif
}

BOOST_AUTO_TEST_CASE(viewer_test,*boost::unit_test::disabled())
Expand Down

0 comments on commit c14e27b

Please sign in to comment.