Skip to content

Fix tmp file deletion in mysqli_pam_sha256_public_key_ini.phpt test #8427

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/verify-generated-files/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ runs:
scripts/dev/genfiles
Zend/zend_vm_gen.php
build/gen_stub.php -f
git add . -Nu && git diff --exit-code
git add . -N && git diff --exit-code
5 changes: 1 addition & 4 deletions ext/mysqli/tests/clean_table.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,4 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {

if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
}

mysqli_close($link);
?>
}