gettext leaks global state across requests, so don't repeat these
tests. See also GH-6641.
--SKIPIF--
<?php
if (!extension_loaded('gettext')) die('skip gettext extension not available');
+if (getenv('SKIP_REPEAT')) die('skip gettext leaks global state across requests');
?>
--FILE--
<?php
if (!setlocale(LC_ALL, 'en_US.UTF-8')) {
die("skip en_US.UTF-8 locale not supported.");
}
+if (getenv('SKIP_REPEAT')) {
+ die('skip gettext leaks global state across requests');
+}
+?>
--FILE--
<?php
$base_dir = __DIR__;