Skip to content

Commit 1a236b1

Browse files
committed
Blacklist mysqli tests from skip cache
See php#6681 for discussion.
1 parent ae2ea34 commit 1a236b1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

run-tests.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3736,7 +3736,10 @@ public function checkSkip(string $php, string $code, string $checkFile, string $
37363736
$dir = dirname($checkFile);
37373737
$key = "$php => $dir";
37383738

3739-
if (isset($this->skips[$key][$code])) {
3739+
if (isset($this->skips[$key][$code])
3740+
// FIXME: caching breaks mysqli tests
3741+
&& strpos($checkFile, 'mysqli') === false
3742+
) {
37403743
$this->hits++;
37413744
if ($this->keepFile) {
37423745
save_text($checkFile, $code, $tempFile);

0 commit comments

Comments
 (0)