common.phpt 637 B

123456789101112131415161718192021222324
  1. --TEST--
  2. Postgres
  3. --SKIPIF--
  4. <?php # vim:ft=php
  5. if (!extension_loaded('pdo_pgsql')) print 'skip'; ?>
  6. --REDIRECTTEST--
  7. # magic auto-configuration
  8. # Also update config.inc if you make changes here...
  9. $config = array(
  10. 'TESTS' => 'ext/pdo/tests'
  11. );
  12. if (false !== getenv('PDO_PGSQL_TEST_DSN')) {
  13. # user set them from their shell
  14. $config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
  15. if (false !== getenv('PDO_PGSQL_TEST_ATTR')) {
  16. $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
  17. }
  18. } else {
  19. $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
  20. }
  21. return $config;