Skip to content

Commit b9795fb

Browse files
authored
Fix env var name
1 parent 4fb85e1 commit b9795fb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: scripts/run_tests.py --running-type="processes" --counts 1 2 3 4
7878
env:
7979
PPC_NUM_THREADS: 1
80-
PPC_PERF_MAX_TIME: 30
80+
PPC_TASK_MAX_TIME: 30
8181
- name: Run tests (threads)
8282
run: scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
8383
env:

modules/performance/tests/perf_tests.cpp

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

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

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

0 commit comments

Comments
 (0)