Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
run: scripts/run_tests.py --running-type="processes" --counts 1 2 3 4
env:
PPC_NUM_THREADS: 1
PPC_PERF_MAX_TIME: 30
- name: Run tests (threads)
run: scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
env:
Expand Down
3 changes: 3 additions & 0 deletions modules/performance/tests/perf_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ TEST(PerfTests, CheckPerfPipelineFloat) {
}

TEST(PerfTests, CheckPerfPipelineUint8tSlowTest) {
#ifdef __APPLE__
GTEST_SKIP() << "Skipped on macOS.";
#endif
std::vector<uint8_t> in(128, 1);

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