summaryrefslogtreecommitdiff
path: root/ext/pgsql
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-03-19 10:58:44 +0000
committerMarcus Boerger <helly@php.net>2005-03-19 10:58:44 +0000
commitd23781e08d4ace718c601a0223c7656231789c3b (patch)
treeba40115ba2175bd1e877335e66f5dc2632775ac6 /ext/pgsql
parent17264461f98451d19f33053619ad0444d0245680 (diff)
downloadphp-git-d23781e08d4ace718c601a0223c7656231789c3b.tar.gz
- Add missing skipif part
Diffstat (limited to 'ext/pgsql')
-rw-r--r--ext/pgsql/tests/24sync_query_prepared.phpt5
-rw-r--r--ext/pgsql/tests/26async_query_prepared.phpt5
2 files changed, 8 insertions, 2 deletions
diff --git a/ext/pgsql/tests/24sync_query_prepared.phpt b/ext/pgsql/tests/24sync_query_prepared.phpt
index 273353b6df..ff16cb69cf 100644
--- a/ext/pgsql/tests/24sync_query_prepared.phpt
+++ b/ext/pgsql/tests/24sync_query_prepared.phpt
@@ -1,7 +1,10 @@
--TEST--
PostgreSQL sync prepared queries
--SKIPIF--
-<?php include("skipif.inc"); ?>
+<?php
+include("skipif.inc");
+if (!function_exists('pg_prepare')) die('skip function pg_prepare() does not exist');
+?>
--FILE--
<?php
diff --git a/ext/pgsql/tests/26async_query_prepared.phpt b/ext/pgsql/tests/26async_query_prepared.phpt
index 84945be323..90912ff0b7 100644
--- a/ext/pgsql/tests/26async_query_prepared.phpt
+++ b/ext/pgsql/tests/26async_query_prepared.phpt
@@ -1,7 +1,10 @@
--TEST--
PostgreSQL async prepared queries
--SKIPIF--
-<?php include("skipif.inc"); ?>
+<?php
+include("skipif.inc");
+if (!function_exists('pg_send_prepare')) die('skip function pg_send_prepare() does not exist');
+?>
--FILE--
<?php