Skip to content

Commit 4fb85e1

Browse files
committed
skip test on macOS
1 parent 9dc4590 commit 4fb85e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/performance/tests/perf_tests.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ TEST(PerfTests, CheckPerfPipelineFloat) {
9696
}
9797

9898
TEST(PerfTests, CheckPerfPipelineUint8tSlowTest) {
99+
#ifdef __APPLE__
100+
GTEST_SKIP() << "Skipped on macOS.";
101+
#endif
99102
std::vector<uint8_t> in(128, 1);
100103

101104
auto test_task = std::make_shared<ppc::test::FakePerfTask<std::vector<uint8_t>, uint8_t>>(in);

0 commit comments

Comments
 (0)