wharmby Fri, 11 Sep 2009 21:57:04 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=288274
Log:
Add missing SKIPIF
Changed paths:
U php/php-src/branches/PHP_5_2/ext/dom/tests/DOMAttr_value_basic_001.phpt
U
php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_appendData_basic.phpt
U
php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_length_error_001.phpt
U php/php-src/branches/PHP_5_2/ext/dom/tests/DOMText_appendData_basic.phpt
U php/php-src/branches/PHP_5_2/ext/dom/tests/bug42082.phpt
U php/php-src/branches/PHP_5_2/ext/dom/tests/bug43364.phpt
U
php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createcomment_error_001.phpt
U
php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_001.phpt
U
php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_002.phpt
U php/php-src/branches/PHP_5_3/ext/dom/tests/DOMAttr_value_basic_001.phpt
U
php/php-src/branches/PHP_5_3/ext/dom/tests/DOMCharacterData_length_error_001.phpt
U php/php-src/branches/PHP_5_3/ext/dom/tests/DOMText_appendData_basic.phpt
U php/php-src/branches/PHP_5_3/ext/dom/tests/bug42082.phpt
U
php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createcomment_error_001.phpt
U
php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_001.phpt
U
php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_002.phpt
U php/php-src/trunk/ext/dom/tests/DOMAttr_value_basic_001.phpt
U php/php-src/trunk/ext/dom/tests/DOMCharacterData_length_error_001.phpt
U php/php-src/trunk/ext/dom/tests/DOMText_appendData_basic.phpt
U php/php-src/trunk/ext/dom/tests/bug42082.phpt
U php/php-src/trunk/ext/dom/tests/domdocument_createcomment_error_001.phpt
U
php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_001.phpt
U
php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_002.phpt
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/DOMAttr_value_basic_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,9 +3,14 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$attr = new DOMAttr('category');
print $attr->value."\n";
?>
+===DONE===
--EXPECTF--
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_appendData_basic.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_appendData_basic.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_appendData_basic.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,6 +3,8 @@
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
@@ -26,10 +28,13 @@
echo "\n" . $document->saveXML();
?>
+===DONE===
--EXPECT--
CDATA Length (one append): 4
CDATA Length (two appends): 8
CDATA Content: data><&"
<?xml version="1.0"?>
-<root><cdata><![CDATA[data><&"]]></cdata></root>
\ No newline at end of file
+<root><cdata><![CDATA[data><&"]]></cdata></root>
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_length_error_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,10 +3,15 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$character_data = new DOMCharacterData();
print $character_data->length;
?>
+===DONE===
--EXPECTF--
-Warning: main(): Invalid State Error in %s
\ No newline at end of file
+Warning: main(): Invalid State Error in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/DOMText_appendData_basic.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,6 +3,8 @@
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
@@ -26,10 +28,13 @@
echo "\n" . $document->saveXML();
?>
+===DONE===
--EXPECT--
Text Length (one append): 4
Text Length (two appends): 8
Text Content: data><&"
<?xml version="1.0"?>
-<root><text>data><&"</text></root>
\ No newline at end of file
+<root><text>data><&"</text></root>
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/bug42082.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/bug42082.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/bug42082.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -1,5 +1,7 @@
--TEST--
Bug #42082 (NodeList length zero should be empty)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
@@ -14,6 +16,7 @@
var_dump($doc->firstChild->nodeValue, empty($doc->firstChild->nodeValue), isset($doc->firstChild->nodeValue));
var_dump(empty($doc->nodeType), empty($doc->firstChild->nodeType))
?>
+===DONE===
--EXPECTF--
object(DOMNodeList)#%d (0) {
}
@@ -24,4 +27,6 @@
bool(true)
bool(true)
bool(false)
-bool(false)
\ No newline at end of file
+bool(false)
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/bug43364.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/bug43364.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/bug43364.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -1,5 +1,7 @@
--TEST--
Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function loopElements($nodes)
@@ -36,5 +38,8 @@
var_dump($count);
?>
+===DONE===
--EXPECT--
int(13)
+===DONE===
+
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createcomment_error_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,10 +2,15 @@
DomDocument::CreateComment() - Incorrect Parameters
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$x = new DomDocument();
$x->createComment();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,12 +2,17 @@
DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference('Test');
- echo $objRef->nodeName;
+ echo $objRef->nodeName . "\n";
?>
+===DONE===
--EXPECT--
-Test
\ No newline at end of file
+Test
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_002.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_2/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,11 +2,16 @@
DomDocument::CreateEntityReference() - Empty Arguments
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/DOMAttr_value_basic_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,9 +3,14 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$attr = new DOMAttr('category');
print $attr->value."\n";
?>
+===DONE===
--EXPECTF--
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/DOMCharacterData_length_error_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,10 +3,15 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$character_data = new DOMCharacterData();
print $character_data->length;
?>
+===DONE===
--EXPECTF--
-Warning: main(): Invalid State Error in %s
\ No newline at end of file
+Warning: main(): Invalid State Error in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/DOMText_appendData_basic.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,6 +3,8 @@
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
@@ -26,10 +28,13 @@
echo "\n" . $document->saveXML();
?>
+===DONE===
--EXPECT--
Text Length (one append): 4
Text Length (two appends): 8
Text Content: data><&"
<?xml version="1.0"?>
-<root><text>data><&"</text></root>
\ No newline at end of file
+<root><text>data><&"</text></root>
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/bug42082.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/bug42082.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/bug42082.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -1,5 +1,7 @@
--TEST--
Bug #42082 (NodeList length zero should be empty)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
@@ -14,6 +16,7 @@
var_dump($doc->firstChild->nodeValue, empty($doc->firstChild->nodeValue), isset($doc->firstChild->nodeValue));
var_dump(empty($doc->nodeType), empty($doc->firstChild->nodeType))
?>
+===DONE===
--EXPECTF--
object(DOMNodeList)#%d (0) {
}
@@ -24,4 +27,6 @@
bool(true)
bool(true)
bool(false)
-bool(false)
\ No newline at end of file
+bool(false)
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createcomment_error_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,10 +2,15 @@
DomDocument::CreateComment() - Incorrect Parameters
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$x = new DomDocument();
$x->createComment();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_001.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,12 +2,17 @@
DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference('Test');
- echo $objRef->nodeName;
+ echo $objRef->nodeName . "\n";
?>
+===DONE===
--EXPECT--
-Test
\ No newline at end of file
+Test
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_002.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/branches/PHP_5_3/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,11 +2,16 @@
DomDocument::CreateEntityReference() - Empty Arguments
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/DOMAttr_value_basic_001.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/DOMAttr_value_basic_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,9 +3,14 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$attr = new DOMAttr('category');
print $attr->value."\n";
?>
+===DONE===
--EXPECTF--
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/DOMCharacterData_length_error_001.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/DOMCharacterData_length_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,10 +3,15 @@
--CREDIT--
Jason Bouffard <[email protected]>
# TestFest Atlanta 2009-05-14
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$character_data = new DOMCharacterData();
print $character_data->length;
?>
+===DONE===
--EXPECTF--
-Warning: main(): Invalid State Error in %s
\ No newline at end of file
+Warning: main(): Invalid State Error in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/DOMText_appendData_basic.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/DOMText_appendData_basic.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -3,6 +3,8 @@
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
@@ -26,10 +28,13 @@
echo "\n" . $document->saveXML();
?>
+===DONE===
--EXPECT--
Text Length (one append): 4
Text Length (two appends): 8
Text Content: data><&"
<?xml version="1.0"?>
-<root><text>data><&"</text></root>
\ No newline at end of file
+<root><text>data><&"</text></root>
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/bug42082.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/bug42082.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/bug42082.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -1,5 +1,7 @@
--TEST--
Bug #42082 (NodeList length zero should be empty)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
@@ -14,6 +16,7 @@
var_dump($doc->firstChild->nodeValue, empty($doc->firstChild->nodeValue), isset($doc->firstChild->nodeValue));
var_dump(empty($doc->nodeType), empty($doc->firstChild->nodeType))
?>
+===DONE===
--EXPECTF--
object(DOMNodeList)#%d (0) {
}
@@ -25,4 +28,5 @@
bool(true)
bool(false)
bool(false)
-
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/domdocument_createcomment_error_001.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/domdocument_createcomment_error_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,10 +2,15 @@
DomDocument::CreateComment() - Incorrect Parameters
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$x = new DomDocument();
$x->createComment();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createComment() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_001.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_001.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,12 +2,17 @@
DomDocument::CreateEntityReference() - Creates an entity reference with the appropriate name
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference('Test');
- echo $objRef->nodeName;
+ echo $objRef->nodeName . "\n";
?>
+===DONE===
--EXPECT--
-Test
\ No newline at end of file
+Test
+===DONE===
+
\ No newline at end of file
Modified: php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_002.phpt
===================================================================
--- php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:26:18 UTC (rev 288273)
+++ php/php-src/trunk/ext/dom/tests/domdocument_createentityreference_002.phpt 2009-09-11 21:57:04 UTC (rev 288274)
@@ -2,11 +2,16 @@
DomDocument::CreateEntityReference() - Empty Arguments
--CREDITS--
Clint Priest @ PhpTek09
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$objDoc = new DomDocument();
$objRef = $objDoc->createEntityReference();
?>
+===DONE===
--EXPECTF--
-Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
\ No newline at end of file
+Warning: DOMDocument::createEntityReference() expects exactly 1 parameter, 0 given in %s
+===DONE===
+
\ No newline at end of file
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php