summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/tests/config.inc
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
committerSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
commit88ec761548b66f58acc1a86cdd0fc164ca925476 (patch)
treed0af978fa00d83bb1d82c613f66477fbd6bb18aa /ext/pdo_pgsql/tests/config.inc
parent268984b4787e797db6054313fc9ba3b9e845306e (diff)
downloadphp-git-PECL_OPENSSL.tar.gz
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'ext/pdo_pgsql/tests/config.inc')
-rw-r--r--ext/pdo_pgsql/tests/config.inc14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/pdo_pgsql/tests/config.inc b/ext/pdo_pgsql/tests/config.inc
deleted file mode 100644
index 6d616cddb5..0000000000
--- a/ext/pdo_pgsql/tests/config.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php # vim:se ft=php:
-if (false !== getenv('PDO_PGSQL_TEST_DSN')) {
- # user set them from their shell
- $config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
- if (false !== getenv('PDO_PGSQL_TEST_ATTR')) {
- $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
- }
-} else {
- $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
-}
-
-foreach ($config['ENV'] as $k => $v) {
- putenv("$k=$v");
-}