mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This makes the tests independent of each other and allows them to be run in parallel. Co-authored-by: Gina Peter Banyard <girgias@php.net>
21 lines
463 B
PHP
21 lines
463 B
PHP
<?php
|
|
|
|
function _skip_lc_messages($conn, $lc_messages = 'C')
|
|
{
|
|
if (!_set_lc_messages($conn, $lc_messages)) {
|
|
die("skip Cannot set LC_MESSAGES to '{$lc_messages}'\n");
|
|
}
|
|
}
|
|
|
|
function _set_lc_messages($conn, $lc_messages = 'C')
|
|
{
|
|
if (pg_fetch_result(pg_query($conn, "SHOW LC_MESSAGES"), 0, 0) != $lc_messages) {
|
|
if (!@pg_exec($conn, "SET LC_MESSAGES='{$lc_messages}'")) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|