diff options
author | Georg Richter <georg@php.net> | 2004-12-04 08:50:33 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2004-12-04 08:50:33 +0000 |
commit | 6d27573ec25944326fde946c14aa0ead9d86eeb2 (patch) | |
tree | e3ed6d7b082a0c7875faf20e60b9dd52eba20950 | |
parent | 9751d9afaa3d06a9cd52f1453553feb915d3f6d1 (diff) | |
download | php-git-6d27573ec25944326fde946c14aa0ead9d86eeb2.tar.gz |
added skipif section
65 files changed, 129 insertions, 0 deletions
diff --git a/ext/mysqli/tests/001.phpt b/ext/mysqli/tests/001.phpt index 8c9dc41f31..880325bb5a 100644 --- a/ext/mysqli/tests/001.phpt +++ b/ext/mysqli/tests/001.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli connect +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/002.phpt b/ext/mysqli/tests/002.phpt index 255944a4ec..fa4e60e185 100644 --- a/ext/mysqli/tests/002.phpt +++ b/ext/mysqli/tests/002.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_result 1 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/003.phpt b/ext/mysqli/tests/003.phpt index 0500ec5577..d043dc7724 100644 --- a/ext/mysqli/tests/003.phpt +++ b/ext/mysqli/tests/003.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli connect +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/004.phpt b/ext/mysqli/tests/004.phpt index 33815c2f76..c80c7214e3 100644 --- a/ext/mysqli/tests/004.phpt +++ b/ext/mysqli/tests/004.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch char/text +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include ("connect.inc"); diff --git a/ext/mysqli/tests/005.phpt b/ext/mysqli/tests/005.phpt index 48a0d77983..a9f75cfd7e 100644 --- a/ext/mysqli/tests/005.phpt +++ b/ext/mysqli/tests/005.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch char/text long +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/006.phpt b/ext/mysqli/tests/006.phpt index 87fbc609e5..4b495cc594 100644 --- a/ext/mysqli/tests/006.phpt +++ b/ext/mysqli/tests/006.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch long values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/007.phpt b/ext/mysqli/tests/007.phpt index bd96961886..503863bdc2 100644 --- a/ext/mysqli/tests/007.phpt +++ b/ext/mysqli/tests/007.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch short values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/008.phpt b/ext/mysqli/tests/008.phpt index a57730bfc8..12311d621b 100644 --- a/ext/mysqli/tests/008.phpt +++ b/ext/mysqli/tests/008.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch tinyint values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/009.phpt b/ext/mysqli/tests/009.phpt index 89f2d6e2e7..6b8f57b203 100644 --- a/ext/mysqli/tests/009.phpt +++ b/ext/mysqli/tests/009.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch bigint values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/010.phpt b/ext/mysqli/tests/010.phpt index 207144c92b..0d74bed501 100644 --- a/ext/mysqli/tests/010.phpt +++ b/ext/mysqli/tests/010.phpt @@ -2,6 +2,8 @@ mysqli fetch float values --INI-- precision=12 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/011.phpt b/ext/mysqli/tests/011.phpt index fab8522a17..77a157f564 100644 --- a/ext/mysqli/tests/011.phpt +++ b/ext/mysqli/tests/011.phpt @@ -2,6 +2,8 @@ mysqli fetch mixed values --INI-- precision=12 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/012.phpt b/ext/mysqli/tests/012.phpt index 5bc766a4ab..9c52f9c3e4 100644 --- a/ext/mysqli/tests/012.phpt +++ b/ext/mysqli/tests/012.phpt @@ -2,6 +2,8 @@ mysqli fetch mixed values 2 --INI-- precision=12 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/013.phpt b/ext/mysqli/tests/013.phpt index b4f9e4e166..ff435f94db 100644 --- a/ext/mysqli/tests/013.phpt +++ b/ext/mysqli/tests/013.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch mixed / mysql_query +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/014.phpt b/ext/mysqli/tests/014.phpt index 162114cdc7..69c347b88b 100644 --- a/ext/mysqli/tests/014.phpt +++ b/ext/mysqli/tests/014.phpt @@ -13,6 +13,8 @@ mysqli autocommit/commit/rollback printf ("skip innodb support is not installed or enabled."); } ?> +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/015.phpt b/ext/mysqli/tests/015.phpt index b9d70e02be..26eb4383c9 100644 --- a/ext/mysqli/tests/015.phpt +++ b/ext/mysqli/tests/015.phpt @@ -13,6 +13,8 @@ mysqli autocommit/commit/rollback with myisam printf ("skip innodb support not installed."); } ?> +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/016.phpt b/ext/mysqli/tests/016.phpt index 0185a81569..c61da29ec1 100644 --- a/ext/mysqli/tests/016.phpt +++ b/ext/mysqli/tests/016.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch user variable +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/017.phpt b/ext/mysqli/tests/017.phpt index d6c8f78386..7f51ca4b91 100644 --- a/ext/mysqli/tests/017.phpt +++ b/ext/mysqli/tests/017.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch functions +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/018.phpt b/ext/mysqli/tests/018.phpt index 0fb2864d52..4ba199d866 100644 --- a/ext/mysqli/tests/018.phpt +++ b/ext/mysqli/tests/018.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch system variables +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/019.phpt b/ext/mysqli/tests/019.phpt index 39dd9c83a6..41b1ba2cf9 100644 --- a/ext/mysqli/tests/019.phpt +++ b/ext/mysqli/tests/019.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli fetch (bind_param + bind_result) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/020.phpt b/ext/mysqli/tests/020.phpt index 62c1657733..85834c52af 100644 --- a/ext/mysqli/tests/020.phpt +++ b/ext/mysqli/tests/020.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_result date +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/021.phpt b/ext/mysqli/tests/021.phpt index 0ff22d4da3..6f5bad3205 100644 --- a/ext/mysqli/tests/021.phpt +++ b/ext/mysqli/tests/021.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param+bind_result char/text +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/022.phpt b/ext/mysqli/tests/022.phpt index 888834296c..cce8ed8eb6 100644 --- a/ext/mysqli/tests/022.phpt +++ b/ext/mysqli/tests/022.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_result char/text long +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/023.phpt b/ext/mysqli/tests/023.phpt index 5f5e320ab7..69e9b20858 100644 --- a/ext/mysqli/tests/023.phpt +++ b/ext/mysqli/tests/023.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_prepare fetch long values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/024.phpt b/ext/mysqli/tests/024.phpt index 7ea92479d4..c6d6cd7e70 100644 --- a/ext/mysqli/tests/024.phpt +++ b/ext/mysqli/tests/024.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_result short values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/025.phpt b/ext/mysqli/tests/025.phpt index ba9db661a7..85ff0fa29f 100644 --- a/ext/mysqli/tests/025.phpt +++ b/ext/mysqli/tests/025.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_result tinyint values +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/026.phpt b/ext/mysqli/tests/026.phpt index 9b480bb65d..0f9e882608 100644 --- a/ext/mysqli/tests/026.phpt +++ b/ext/mysqli/tests/026.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_param/bind_result with send_long_data +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/027.phpt b/ext/mysqli/tests/027.phpt index 2505df530c..9f8eadf9dd 100644 --- a/ext/mysqli/tests/027.phpt +++ b/ext/mysqli/tests/027.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_stat +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/028.phpt b/ext/mysqli/tests/028.phpt index b6fab50e44..021804540d 100644 --- a/ext/mysqli/tests/028.phpt +++ b/ext/mysqli/tests/028.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_character_set_name +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/029.phpt b/ext/mysqli/tests/029.phpt index 6fea5b889d..318e6aeb9e 100644 --- a/ext/mysqli/tests/029.phpt +++ b/ext/mysqli/tests/029.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_affected_rows +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/030.phpt b/ext/mysqli/tests/030.phpt index 9bf7369a22..a3946c3715 100644 --- a/ext/mysqli/tests/030.phpt +++ b/ext/mysqli/tests/030.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_errno +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/031.phpt b/ext/mysqli/tests/031.phpt index c75bfd42b4..743b4b2d0f 100644 --- a/ext/mysqli/tests/031.phpt +++ b/ext/mysqli/tests/031.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_error +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/032.phpt b/ext/mysqli/tests/032.phpt index 0cb4ee4d09..18bd756a23 100644 --- a/ext/mysqli/tests/032.phpt +++ b/ext/mysqli/tests/032.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_info +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/033.phpt b/ext/mysqli/tests/033.phpt index c9247eae60..3a56b5c678 100644 --- a/ext/mysqli/tests/033.phpt +++ b/ext/mysqli/tests/033.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_get_host_info +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/034.phpt b/ext/mysqli/tests/034.phpt index 2d176c79fe..47c99f07e5 100644 --- a/ext/mysqli/tests/034.phpt +++ b/ext/mysqli/tests/034.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_get_proto_info +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/035.phpt b/ext/mysqli/tests/035.phpt index b402a4859f..ea31222ec7 100644 --- a/ext/mysqli/tests/035.phpt +++ b/ext/mysqli/tests/035.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_get_server_info +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/036.phpt b/ext/mysqli/tests/036.phpt index 95fa182591..58d27b481e 100644 --- a/ext/mysqli/tests/036.phpt +++ b/ext/mysqli/tests/036.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_insert_id() +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/037.phpt b/ext/mysqli/tests/037.phpt index a14d554b2b..c9089c19be 100644 --- a/ext/mysqli/tests/037.phpt +++ b/ext/mysqli/tests/037.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_field_count() +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/038.phpt b/ext/mysqli/tests/038.phpt index 21f9a27d6b..ecd4f908f1 100644 --- a/ext/mysqli/tests/038.phpt +++ b/ext/mysqli/tests/038.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_num_fields() +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/039.phpt b/ext/mysqli/tests/039.phpt index ba5915bb97..1d5ab99106 100644 --- a/ext/mysqli/tests/039.phpt +++ b/ext/mysqli/tests/039.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_num_fields() 2 +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/040.phpt b/ext/mysqli/tests/040.phpt index 4d7c4563c1..79bfe0d5fb 100644 --- a/ext/mysqli/tests/040.phpt +++ b/ext/mysqli/tests/040.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_num_rows() +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/041.phpt b/ext/mysqli/tests/041.phpt index 7bc82f05c8..e78c60a956 100644 --- a/ext/mysqli/tests/041.phpt +++ b/ext/mysqli/tests/041.phpt @@ -1,5 +1,7 @@ --TEST-- function test: mysqli_warning_count() +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/042.phpt b/ext/mysqli/tests/042.phpt index c1384bbf68..fe6d23e172 100644 --- a/ext/mysqli/tests/042.phpt +++ b/ext/mysqli/tests/042.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_fetch_object +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/043.phpt b/ext/mysqli/tests/043.phpt index 1d4b1854ac..fb0284e06a 100644 --- a/ext/mysqli/tests/043.phpt +++ b/ext/mysqli/tests/043.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_bind_param (UPDATE) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/044.phpt b/ext/mysqli/tests/044.phpt index cb4a272fc5..28e73a7e09 100644 --- a/ext/mysqli/tests/044.phpt +++ b/ext/mysqli/tests/044.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_get_server_version +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/045.phpt b/ext/mysqli/tests/045.phpt index 8e2affd085..5a6efeafb7 100644 --- a/ext/mysqli/tests/045.phpt +++ b/ext/mysqli/tests/045.phpt @@ -15,6 +15,8 @@ mysqli_bind_result (SHOW) $stmt->close(); mysqli_close($link); ?> +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/046.phpt b/ext/mysqli/tests/046.phpt index 6adb908a4b..e88348bfa9 100644 --- a/ext/mysqli/tests/046.phpt +++ b/ext/mysqli/tests/046.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_stmt_affected_rows (delete) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/047.phpt b/ext/mysqli/tests/047.phpt index 50540aff65..56acddd688 100644 --- a/ext/mysqli/tests/047.phpt +++ b/ext/mysqli/tests/047.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_get_metadata +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/048.phpt b/ext/mysqli/tests/048.phpt index ec849e3992..1cf5b67894 100644 --- a/ext/mysqli/tests/048.phpt +++ b/ext/mysqli/tests/048.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli bind_result (OO-Style) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/049.phpt b/ext/mysqli/tests/049.phpt index 869220d92e..13ea5594c3 100644 --- a/ext/mysqli/tests/049.phpt +++ b/ext/mysqli/tests/049.phpt @@ -1,5 +1,7 @@ --TEST-- mysql_fetch_row (OO-Style) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/050.phpt b/ext/mysqli/tests/050.phpt index 3e8a8a37fb..5f923ccf34 100644 --- a/ext/mysqli/tests/050.phpt +++ b/ext/mysqli/tests/050.phpt @@ -1,5 +1,7 @@ --TEST-- non freed statement test +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/051.phpt b/ext/mysqli/tests/051.phpt index 807cc2f275..ef378757f1 100644 --- a/ext/mysqli/tests/051.phpt +++ b/ext/mysqli/tests/051.phpt @@ -1,5 +1,7 @@ --TEST-- free statement after close +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/052.phpt b/ext/mysqli/tests/052.phpt index cda1b2c844..3fa5dc8f17 100644 --- a/ext/mysqli/tests/052.phpt +++ b/ext/mysqli/tests/052.phpt @@ -1,5 +1,7 @@ --TEST-- call statement after close +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/053.phpt b/ext/mysqli/tests/053.phpt index 4bfce10b14..99148c7e80 100644 --- a/ext/mysqli/tests/053.phpt +++ b/ext/mysqli/tests/053.phpt @@ -1,5 +1,7 @@ --TEST-- not freed resultset +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/054.phpt b/ext/mysqli/tests/054.phpt index 7c9b51fe46..727b87ef8e 100644 --- a/ext/mysqli/tests/054.phpt +++ b/ext/mysqli/tests/054.phpt @@ -1,5 +1,7 @@ --TEST-- free resultset after close +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/055.phpt b/ext/mysqli/tests/055.phpt index 8fa374a6c7..e650dbcecd 100644 --- a/ext/mysqli/tests/055.phpt +++ b/ext/mysqli/tests/055.phpt @@ -1,5 +1,7 @@ --TEST-- free nothing +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/056.phpt b/ext/mysqli/tests/056.phpt index a681ffcf49..cc5c32fc60 100644 --- a/ext/mysqli/tests/056.phpt +++ b/ext/mysqli/tests/056.phpt @@ -1,5 +1,7 @@ --TEST-- extend mysqli +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/057.phpt b/ext/mysqli/tests/057.phpt index fcd07f6f0b..a987c72381 100644 --- a/ext/mysqli/tests/057.phpt +++ b/ext/mysqli/tests/057.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_get_metadata +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/058.phpt b/ext/mysqli/tests/058.phpt index 95bdbc1cbe..7554d08f68 100644 --- a/ext/mysqli/tests/058.phpt +++ b/ext/mysqli/tests/058.phpt @@ -1,5 +1,7 @@ --TEST-- multiple binds +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/059.phpt b/ext/mysqli/tests/059.phpt index 151c3de961..0bc8a62bbf 100644 --- a/ext/mysqli/tests/059.phpt +++ b/ext/mysqli/tests/059.phpt @@ -1,5 +1,7 @@ --TEST-- sqlmode + bind +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/060.phpt b/ext/mysqli/tests/060.phpt index 7c753743cd..875130dc55 100644 --- a/ext/mysqli/tests/060.phpt +++ b/ext/mysqli/tests/060.phpt @@ -1,5 +1,7 @@ --TEST-- mysqli_fetch_object with classes +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/061.phpt b/ext/mysqli/tests/061.phpt index f1c2970011..9c278353c6 100644 --- a/ext/mysqli/tests/061.phpt +++ b/ext/mysqli/tests/061.phpt @@ -1,5 +1,7 @@ --TEST-- local infile handler +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/bug28817.phpt b/ext/mysqli/tests/bug28817.phpt index 9f2aae9563..0cc8b13612 100644 --- a/ext/mysqli/tests/bug28817.phpt +++ b/ext/mysqli/tests/bug28817.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #28817 testcase (properties) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/bug29311.phpt b/ext/mysqli/tests/bug29311.phpt index 53710cbdc8..b50de178b2 100644 --- a/ext/mysqli/tests/bug29311.phpt +++ b/ext/mysqli/tests/bug29311.phpt @@ -1,5 +1,7 @@ --TEST-- constructor test +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/bug30967.phpt b/ext/mysqli/tests/bug30967.phpt index dd40194744..67c1fc22d1 100644 --- a/ext/mysqli/tests/bug30967.phpt +++ b/ext/mysqli/tests/bug30967.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #30967 testcase (properties) +--SKIPIF-- +<?php require_once('skipif.inc'); ?> --FILE-- <?php include "connect.inc"; diff --git a/ext/mysqli/tests/skipif.inc b/ext/mysqli/tests/skipif.inc new file mode 100644 index 0000000000..eded86dc85 --- /dev/null +++ b/ext/mysqli/tests/skipif.inc @@ -0,0 +1 @@ +<?php if (!extension_loaded('mysqli')) die('skip mysqli extension not available');?> |