diff options
author | Antony Dovgal <tony2001@php.net> | 2006-03-30 20:43:39 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-03-30 20:43:39 +0000 |
commit | b6c9363f7390c0b425f9286fb0ee010e380d2de4 (patch) | |
tree | 4ac5e705e550ccf71f497aa6df1cf087d972dd06 /ext | |
parent | 14aef92b2ff81d5a640f4935327f9abad70546d9 (diff) | |
download | php-git-b6c9363f7390c0b425f9286fb0ee010e380d2de4.tar.gz |
fix tests
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mysqli/tests/014.phpt | 2 | ||||
-rw-r--r-- | ext/mysqli/tests/015.phpt | 3 | ||||
-rw-r--r-- | ext/mysqli/tests/045.phpt | 6 |
3 files changed, 5 insertions, 6 deletions
diff --git a/ext/mysqli/tests/014.phpt b/ext/mysqli/tests/014.phpt index 8bd26f5db9..d6591fcab4 100644 --- a/ext/mysqli/tests/014.phpt +++ b/ext/mysqli/tests/014.phpt @@ -2,6 +2,7 @@ mysqli autocommit/commit/rollback --SKIPIF-- <?php + require_once('skipif.inc'); include "connect.inc"; $link = mysqli_connect($host, $user, $passwd); $result = mysqli_query($link, "SHOW VARIABLES LIKE 'have_innodb'"); @@ -12,7 +13,6 @@ mysqli autocommit/commit/rollback printf ("skip innodb support is not installed or enabled."); exit; } - require_once('skipif.inc'); ?> --FILE-- <?php diff --git a/ext/mysqli/tests/015.phpt b/ext/mysqli/tests/015.phpt index 26eb4383c9..7620f3c435 100644 --- a/ext/mysqli/tests/015.phpt +++ b/ext/mysqli/tests/015.phpt @@ -2,6 +2,7 @@ mysqli autocommit/commit/rollback with myisam --SKIPIF-- <?php + require_once('skipif.inc'); include "connect.inc"; $link = mysqli_connect($host, $user, $passwd); $result = mysqli_query($link, "SHOW VARIABLES LIKE 'have_innodb'"); @@ -13,8 +14,6 @@ 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/045.phpt b/ext/mysqli/tests/045.phpt index 2f9490c282..dd491a6977 100644 --- a/ext/mysqli/tests/045.phpt +++ b/ext/mysqli/tests/045.phpt @@ -2,6 +2,9 @@ mysqli_bind_result (SHOW) --SKIPIF-- <?php + require_once('skipif.inc'); + require_once('skipifemb.inc'); + include "connect.inc"; $link = mysqli_connect($host, $user, $passwd); @@ -15,9 +18,6 @@ mysqli_bind_result (SHOW) $stmt->close(); mysqli_close($link); ?> ---SKIPIF-- -<?php require_once('skipif.inc'); ?> -<?php require_once('skipifemb.inc'); ?> --FILE-- <?php include "connect.inc"; |