summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/dom/tests/DOMCharacterData_appendData_basic.phpt2
-rw-r--r--ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt2
-rw-r--r--ext/dom/tests/DOMComment_replaceData_basic.phpt2
-rw-r--r--ext/dom/tests/DOMDocumentFragment_appendXML_hasChildNodes_basic.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createAttribute_basic.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createAttribute_error.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createAttribute_error1.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createAttribute_variation.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createProcessingInstruction_basic.phpt2
-rw-r--r--ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt2
-rw-r--r--ext/dom/tests/DOMElement_hasAttributes_basic.phpt2
-rw-r--r--ext/dom/tests/DOMNode_issamenode_basic.phpt2
-rw-r--r--ext/dom/tests/DOMNode_normalize_basic.phpt6
13 files changed, 26 insertions, 4 deletions
diff --git a/ext/dom/tests/DOMCharacterData_appendData_basic.phpt b/ext/dom/tests/DOMCharacterData_appendData_basic.phpt
index ee590de80c..e479c1e8b8 100644
--- a/ext/dom/tests/DOMCharacterData_appendData_basic.phpt
+++ b/ext/dom/tests/DOMCharacterData_appendData_basic.phpt
@@ -3,6 +3,8 @@ DOMCharacterData::appendData basic functionality test
--CREDITS--
Mike Sullivan <mike@regexia.com>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt b/ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt
index b7d90a1194..ae06d8a87c 100644
--- a/ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt
+++ b/ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt
@@ -3,6 +3,8 @@ DOMComment::appendData basic functionality test
--CREDITS--
Mike Sullivan <mike@regexia.com>
#TestFest 2008 (London)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMComment_replaceData_basic.phpt b/ext/dom/tests/DOMComment_replaceData_basic.phpt
index 10bf677ff3..2963cb1e06 100644
--- a/ext/dom/tests/DOMComment_replaceData_basic.phpt
+++ b/ext/dom/tests/DOMComment_replaceData_basic.phpt
@@ -4,7 +4,7 @@ Test replacing data into a DOMComment basic test
Andrew Larssen <al@larssen.org>
London TestFest 2008
--SKIPIF--
-<?php // require_once('skipif.inc'); ?>
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMDocumentFragment_appendXML_hasChildNodes_basic.phpt b/ext/dom/tests/DOMDocumentFragment_appendXML_hasChildNodes_basic.phpt
index d6fb632132..c82a73b526 100644
--- a/ext/dom/tests/DOMDocumentFragment_appendXML_hasChildNodes_basic.phpt
+++ b/ext/dom/tests/DOMDocumentFragment_appendXML_hasChildNodes_basic.phpt
@@ -1,5 +1,7 @@
--TEST--
Testing DOMDocumentFragment::appendXML and DOMDocumentFragment::hasChildNodes
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
diff --git a/ext/dom/tests/DOMDocument_createAttribute_basic.phpt b/ext/dom/tests/DOMDocument_createAttribute_basic.phpt
index 5205a3e30f..4dd181b3f8 100644
--- a/ext/dom/tests/DOMDocument_createAttribute_basic.phpt
+++ b/ext/dom/tests/DOMDocument_createAttribute_basic.phpt
@@ -3,6 +3,8 @@ DomDocument::createAttribute() - basic test for DomDocument::createAttribute()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMDocument_createAttribute_error.phpt b/ext/dom/tests/DOMDocument_createAttribute_error.phpt
index 3b318d40d2..bf71d554aa 100644
--- a/ext/dom/tests/DOMDocument_createAttribute_error.phpt
+++ b/ext/dom/tests/DOMDocument_createAttribute_error.phpt
@@ -1,5 +1,7 @@
--TEST--
Test DOMDocument::createAttribute() for expected expection thrown when wrong parameter passed
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new DOMDocument();
diff --git a/ext/dom/tests/DOMDocument_createAttribute_error1.phpt b/ext/dom/tests/DOMDocument_createAttribute_error1.phpt
index 153b18b5a2..745873aca9 100644
--- a/ext/dom/tests/DOMDocument_createAttribute_error1.phpt
+++ b/ext/dom/tests/DOMDocument_createAttribute_error1.phpt
@@ -3,6 +3,8 @@ DomDocument::createAttribute() - error test for DomDocument::createAttribute()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMDocument_createAttribute_variation.phpt b/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
index f00493455c..ff81343cc9 100644
--- a/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
+++ b/ext/dom/tests/DOMDocument_createAttribute_variation.phpt
@@ -1,5 +1,7 @@
--TEST--
Test DOMDocument::createAttribute() for expected return value
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new DOMDocument();
diff --git a/ext/dom/tests/DOMDocument_createProcessingInstruction_basic.phpt b/ext/dom/tests/DOMDocument_createProcessingInstruction_basic.phpt
index ea0910417c..9f45f125d5 100644
--- a/ext/dom/tests/DOMDocument_createProcessingInstruction_basic.phpt
+++ b/ext/dom/tests/DOMDocument_createProcessingInstruction_basic.phpt
@@ -3,6 +3,8 @@ DomDocument::createProcessingInstruction() - basic test for DomDocument::createP
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt b/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt
index d050b17714..a0c12b1fe7 100644
--- a/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt
+++ b/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt
@@ -3,6 +3,8 @@ DomDocument::createProcessingInstruction() - error test for DomDocument::createP
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/dom/tests/DOMElement_hasAttributes_basic.phpt b/ext/dom/tests/DOMElement_hasAttributes_basic.phpt
index f0d0c355b8..8e38d935e7 100644
--- a/ext/dom/tests/DOMElement_hasAttributes_basic.phpt
+++ b/ext/dom/tests/DOMElement_hasAttributes_basic.phpt
@@ -3,6 +3,8 @@ DOMNode: hasAttributes()
--CREDITS--
James Lewis <james@s-1.com>
#TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
require_once("dom_test.inc");
diff --git a/ext/dom/tests/DOMNode_issamenode_basic.phpt b/ext/dom/tests/DOMNode_issamenode_basic.phpt
index beccb8fb62..e008340ead 100644
--- a/ext/dom/tests/DOMNode_issamenode_basic.phpt
+++ b/ext/dom/tests/DOMNode_issamenode_basic.phpt
@@ -3,6 +3,8 @@ DOMNode: isSameNode()
--CREDITS--
James Lewis <james@s-1.com>
#TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
require_once("dom_test.inc");
diff --git a/ext/dom/tests/DOMNode_normalize_basic.phpt b/ext/dom/tests/DOMNode_normalize_basic.phpt
index 79f5294d63..e413fb033a 100644
--- a/ext/dom/tests/DOMNode_normalize_basic.phpt
+++ b/ext/dom/tests/DOMNode_normalize_basic.phpt
@@ -1,15 +1,15 @@
--TEST--
-normalize()
+DOMNode::normalize()
--SKIPIF--
<?php
include('skipif.inc');
?>
--FILE--
-<?php
+<?php
/* Create an XML document
* with structure
- * <book>
+ * <book>
* <author></author>
* <title>This is the title</title>
* </book>