We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2750488 commit 87fb673Copy full SHA for 87fb673
.github/workflows/mac.yml
@@ -77,6 +77,7 @@ jobs:
77
run: scripts/run_tests.py --running-type="processes" --counts 1 2 3 4
78
env:
79
PPC_NUM_THREADS: 1
80
+ PPC_PERF_MAX_TIME: 30
81
- name: Run tests (threads)
82
run: scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
83
modules/performance/tests/perf_tests.cpp
@@ -96,6 +96,9 @@ TEST(PerfTests, CheckPerfPipelineFloat) {
96
}
97
98
TEST(PerfTests, CheckPerfPipelineUint8tSlowTest) {
99
+#ifdef __APPLE__
100
+ GTEST_SKIP() << "Skipped on macOS.";
101
+#endif
102
std::vector<uint8_t> in(128, 1);
103
104
auto test_task = std::make_shared<ppc::test::FakePerfTask<std::vector<uint8_t>, uint8_t>>(in);
0 commit comments