fix test names

This commit is contained in:
Antony Dovgal 2007-05-07 16:50:40 +00:00
parent 018e610436
commit 8d9be0338b
28 changed files with 28 additions and 28 deletions

View File

@ -1,5 +1,5 @@
--TEST--
bug #22725 (A derived class can call a parent's protected method that calls a private method)
Bug #22725 (A derived class can call a parent's protected method that calls a private method)
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #33771 (error_reporting falls to 0 when @ was used inside try/catch block)
Bug #33771 (error_reporting falls to 0 when @ was used inside try/catch block)
--FILE--
<?php

Binary file not shown.

View File

@ -1,5 +1,5 @@
--TEST--
bug #33263 (mysqli_real_connect in __construct)
Bug #33263 (mysqli_real_connect in __construct)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php require_once('skipifemb.inc'); ?>

View File

@ -1,5 +1,5 @@
--TEST--
bug #34810 (mysqli::init() and others use wrong $this pointer without checks)
Bug #34810 (mysqli::init() and others use wrong $this pointer without checks)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #35103 Bad handling of unsigned bigint
Bug #35103 (Bad handling of unsigned bigint)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #35759 : mysqli_stmt_bind_result() makes huge allocation when column empty
Bug #35759 (mysqli_stmt_bind_result() makes huge allocation when column empty)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #36420 (segfault when access result->num_rows after calling result->close())
Bug #36420 (segfault when access result->num_rows after calling result->close())
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #36745 : LOAD DATA LOCAL INFILE doesn't return correct error message
Bug #36745 (LOAD DATA LOCAL INFILE doesn't return correct error message)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #36802 : crashes with mysql_init
Bug #36802 (crashes with with mysqli_set_charset())
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #36949
Bug #36949 (invalid internal mysqli objects dtor)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #27303 (OCIBindByName binds numeric PHP values as characters)
Bug #27303 (OCIBindByName binds numeric PHP values as characters)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #27303 (OCIBindByName binds numeric PHP values as characters)
Bug #27303 (OCIBindByName binds numeric PHP values as characters)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #27303 (OCIBindByName binds numeric PHP values as characters)
Bug #27303 (OCIBindByName binds numeric PHP values as characters)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #27303 (OCIBindByName binds numeric PHP values as characters)
Bug #27303 (OCIBindByName binds numeric PHP values as characters)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #32325 (Can't retrieve collection using OCI8)
Bug #32325 (Can't retrieve collection using OCI8)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #35973 (Error ORA-24806 occurs when trying to fetch a NCLOB field)
Bug #35973 (Error ORA-24806 occurs when trying to fetch a NCLOB field)
--SKIPIF--
<?php if (!extension_loaded("oci8")) print "skip"; ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #36010 (Crash when executing SQL statment with lob parameter twice)
Bug #36010 (Crash when executing SQL statment with lob parameter twice)
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #38161 (oci_bind_by_name() returns garbage when Oracle didn't set the variable)
Bug #38161 (oci_bind_by_name() returns garbage when Oracle didn't set the variable)
--SKIPIF--
<?php if (!extension_loaded("oci8")) print "skip"; ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #31454 (session_set_save_handler crashes PHP when supplied non-existent object ref)
Bug #31454 (session_set_save_handler crashes PHP when supplied non-existent object ref)
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #31454 (Incorrect adding PHPSESSID to links, which contains \r\n)
Bug #31454 (Incorrect adding PHPSESSID to links, which contains \r\n)
--SKIPIF--
<?php include('skipif.inc'); ?>
--INI--

View File

@ -1,5 +1,5 @@
--TEST--
bug #38377 (session_destroy() gives warning after session_regenerate_id())
Bug #38377 (session_destroy() gives warning after session_regenerate_id())
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--

View File

@ -1,5 +1,5 @@
--TEST--
bug #34794: proc_close() hangs when used with two processes
Bug #34794 (proc_close() hangs when used with two processes)
--SKIPIF--
<?php
if (!is_executable('/bin/cat')) echo 'skip cat not found';

View File

@ -1,5 +1,5 @@
--TEST--
bug #39322: proc_terminate() loosing process resource
Bug #39322 (proc_terminate() loosing process resource)
--SKIPIF--
<?php
if (!is_executable('/bin/sleep')) echo 'skip sleep not found';

View File

@ -1,5 +1,5 @@
--TEST--
bug #7214, zip_entry_read() binary safe
Bug #7214 (zip_entry_read() binary safe)
--SKIPIF--
<?php
/* $Id$ */
@ -20,4 +20,4 @@ if (strlen($contents) == zip_entry_filesize($entry)) {
?>
--EXPECT--
Ok
Ok

View File

@ -1,5 +1,5 @@
--TEST--
bug #7658, modify archive with general bit flag 3 set
Bug #7658 (modify archive with general bit flag 3 set)
--SKIPIF--
<?php
/* $Id$ */

View File

@ -1,5 +1,5 @@
--TEST--
bug #8009, cannot add again same entry to an archive
Bug #8009 (cannot add again same entry to an archive)
--SKIPIF--
<?php
/* $Id$ */

View File

@ -1,5 +1,5 @@
--TEST--
bug #8700, getFromIndex(0) fails
Bug #8700 (getFromIndex(0) fails)
--SKIPIF--
<?php
/* $Id$ */