helly           Sat Mar 19 05:58:44 2005 EDT

  Modified files:              
    /php-src/ext/pgsql/tests    24sync_query_prepared.phpt 
                                26async_query_prepared.phpt 
  Log:
  - Add missing skipif part
  
http://cvs.php.net/diff.php/php-src/ext/pgsql/tests/24sync_query_prepared.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/pgsql/tests/24sync_query_prepared.phpt
diff -u php-src/ext/pgsql/tests/24sync_query_prepared.phpt:1.1 
php-src/ext/pgsql/tests/24sync_query_prepared.phpt:1.2
--- php-src/ext/pgsql/tests/24sync_query_prepared.phpt:1.1      Sat Mar 19 
03:46:56 2005
+++ php-src/ext/pgsql/tests/24sync_query_prepared.phpt  Sat Mar 19 05:58:44 2005
@@ -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
 
http://cvs.php.net/diff.php/php-src/ext/pgsql/tests/26async_query_prepared.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/pgsql/tests/26async_query_prepared.phpt
diff -u php-src/ext/pgsql/tests/26async_query_prepared.phpt:1.1 
php-src/ext/pgsql/tests/26async_query_prepared.phpt:1.2
--- php-src/ext/pgsql/tests/26async_query_prepared.phpt:1.1     Sat Mar 19 
03:46:56 2005
+++ php-src/ext/pgsql/tests/26async_query_prepared.phpt Sat Mar 19 05:58:44 2005
@@ -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
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to