History log of /php-src/ext/mysqli/tests/test_setup/test_helpers.inc (Results 1 – 4 of 4)
Revision Date Author Comments
# 7a9120e5 18-Aug-2024 Christoph M. Becker

Avoid multiple connects in SKIPIF sections (GH-15470)

Besides checking for the ability to connect to the MySQL server, some
tests require additional checks (e.g. to be able to check for

Avoid multiple connects in SKIPIF sections (GH-15470)

Besides checking for the ability to connect to the MySQL server, some
tests require additional checks (e.g. to be able to check for the
server's version) as skip condition. There is no need, though, to
connect twice; instead we introduce `mysqli_connect_or_skip()` in
test_helpers.inc, which `die()`s with an appropriate error message, if
the connection can't be established, or returns the connection link
otherwise.

Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>

show more ...


# 7fa2dbf9 18-Aug-2024 Christoph M. Becker

Drop support for MYSQL_TEST_EXPERIMENTAL (GH-15467)

This environment variable serves to hide (parts of) tests from general
execution, and as the test failures show when that environment

Drop support for MYSQL_TEST_EXPERIMENTAL (GH-15467)

This environment variable serves to hide (parts of) tests from general
execution, and as the test failures show when that environment variable
is set, apparently it serves to hide (parts of) test from being
executed at all, thus causing test rot.

To avoid this in the future, we drop `MYSQL_TEST_EXPERIMENTAL`, and fix
the failing tests, except for mysqli_get_warnings.phpt, which appears
to be broken beyond repair, and whose most important tests are already
covered by other test cases.

Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>

show more ...


# 7e5171d1 17-Aug-2024 Kamil Tekiela

Clean up mysqli tests (#15473)


# 6a4031b8 29-Sep-2023 George Peter Banyard

ext/mysqli: Work on making tests parallizable (#11814)

Batch 1 of amending tests, so they can run in parallel.

Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>