diff --git a/run-tests.php b/run-tests.php index f6819f95d81ae..6c5faebb1a8e4 100755 --- a/run-tests.php +++ b/run-tests.php @@ -3736,7 +3736,10 @@ public function checkSkip(string $php, string $code, string $checkFile, string $ $dir = dirname($checkFile); $key = "$php => $dir"; - if (isset($this->skips[$key][$code])) { + if (isset($this->skips[$key][$code]) + // FIXME: caching breaks mysqli tests + && strpos($checkFile, 'mysqli') === false + ) { $this->hits++; if ($this->keepFile) { save_text($checkFile, $code, $tempFile);