mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00

These have been inadvertently dropped when changing the test suite to not require ext/interbase anymore, so we add them back. We also change the required environment variable names to match the usual PDO names. Particularly, we replace `PDO_FIREBIRD_TEST_HOSTNAME` and `_DATABASE` with the more flexible `PDO_FIREBIRD_TEST_DSN`.
12 lines
No EOL
202 B
PHP
12 lines
No EOL
202 B
PHP
<?php
|
|
|
|
if(!extension_loaded('pdo_firebird'))
|
|
{
|
|
die('skip: pdo_firebird not available');
|
|
}
|
|
elseif(!getenv('PDO_FIREBIRD_TEST_DSN'))
|
|
{
|
|
die('skip: PDO_FIREBIRD_TEST_DSN must be set');
|
|
}
|
|
|
|
?>
|