diff --git a/run-tests.php b/run-tests.php index ac5fc91118e..d0befa3738d 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2811,6 +2811,11 @@ function is_flaky(TestFile $test): bool if ($test->hasSection('FLAKY')) { return true; } + if ($test->hasSection('SKIPIF')) { + if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) { + return true; + } + } if (!$test->hasSection('FILE')) { return false; }