Skip to content

Commit

Permalink
disabled few tests which uses renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
venkat0907 committed Aug 7, 2023
1 parent 63b3342 commit 135f48d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/test/memtypeconversion_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

BOOST_AUTO_TEST_SUITE(memtypeconversion_tests)

BOOST_AUTO_TEST_CASE(Host_to_Dma)
BOOST_AUTO_TEST_CASE(Host_to_Dma,*boost::unit_test::disabled())
{
#if defined(__arm__) || defined(__aarch64__)
auto fileReader = boost::shared_ptr<FileReaderModule>(new FileReaderModule(FileReaderModuleProps("./data/8bit_frame_1280x720_rgba.raw")));
Expand Down Expand Up @@ -150,7 +150,7 @@ BOOST_AUTO_TEST_CASE(Dma_to_Host_to_Dma,*boost::unit_test::disabled())
#endif
}

BOOST_AUTO_TEST_CASE(Device_to_Dma_BGRA_400x400)
BOOST_AUTO_TEST_CASE(Device_to_Dma_BGRA_400x400,*boost::unit_test::disabled())
{
#if defined(__arm__) || defined(__aarch64__)
auto fileReader = boost::shared_ptr<FileReaderModule>(new FileReaderModule(FileReaderModuleProps("./data/overlay_400x400_BGRA.raw")));
Expand Down Expand Up @@ -184,7 +184,7 @@ BOOST_AUTO_TEST_CASE(Device_to_Dma_BGRA_400x400)
#endif
}

BOOST_AUTO_TEST_CASE(Device_to_Dma_RGBA)
BOOST_AUTO_TEST_CASE(Device_to_Dma_RGBA,*boost::unit_test::disabled())
{
#if defined(__arm__) || defined(__aarch64__)
auto fileReader = boost::shared_ptr<FileReaderModule>(new FileReaderModule(FileReaderModuleProps("./data/8bit_frame_1280x720_rgba.raw")));
Expand Down Expand Up @@ -218,7 +218,7 @@ BOOST_AUTO_TEST_CASE(Device_to_Dma_RGBA)
#endif
}

BOOST_AUTO_TEST_CASE(Device_to_Dma_Planar)
BOOST_AUTO_TEST_CASE(Device_to_Dma_Planar,*boost::unit_test::disabled())
{
#if defined(__arm__) || defined(__aarch64__)
auto fileReader = boost::shared_ptr<FileReaderModule>(new FileReaderModule(FileReaderModuleProps("./data/yuv420_400x400.raw")));
Expand Down

0 comments on commit 135f48d

Please sign in to comment.