summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-05-19 08:45:46 +0000
committerMarcus Boerger <helly@php.net>2004-05-19 08:45:46 +0000
commitd94136fc3098e73ec46c6fb40358a5fbefced82f (patch)
tree5123ef2a407e6a7068624c280e5dcdda31ff670e /tests
parentbd29f379e748ec0060d47c6d479e51e1445d9ae8 (diff)
downloadphp-git-d94136fc3098e73ec46c6fb40358a5fbefced82f.tar.gz
- Remove unused blocks
Diffstat (limited to 'tests')
-rw-r--r--tests/basic/001.phpt2
-rw-r--r--tests/basic/002.phpt1
-rw-r--r--tests/basic/004.phpt1
-rw-r--r--tests/basic/005.phpt1
-rw-r--r--tests/basic/006.phpt2
-rw-r--r--tests/basic/007.phpt2
-rw-r--r--tests/basic/008.phpt2
-rw-r--r--tests/basic/009.phpt2
-rw-r--r--tests/basic/010.phpt2
-rw-r--r--tests/lang/001.phpt2
-rw-r--r--tests/lang/002.phpt2
-rw-r--r--tests/lang/003.phpt2
-rw-r--r--tests/lang/004.phpt2
-rw-r--r--tests/lang/005.phpt2
-rw-r--r--tests/lang/006.phpt2
-rw-r--r--tests/lang/007.phpt2
-rw-r--r--tests/lang/008.phpt2
-rw-r--r--tests/lang/009.phpt2
-rw-r--r--tests/lang/010.phpt2
-rw-r--r--tests/lang/011.phpt2
-rw-r--r--tests/lang/012.phpt2
-rw-r--r--tests/lang/013.phpt2
-rw-r--r--tests/lang/014.phpt2
-rw-r--r--tests/lang/015.phpt2
-rw-r--r--tests/lang/016.phpt2
-rw-r--r--tests/lang/017.phpt2
-rw-r--r--tests/lang/018.phpt2
-rw-r--r--tests/lang/019.phpt2
-rw-r--r--tests/lang/020.phpt2
-rw-r--r--tests/lang/021.phpt2
-rw-r--r--tests/lang/022.phpt2
-rw-r--r--tests/lang/023.phpt2
-rw-r--r--tests/lang/024.phpt2
-rw-r--r--tests/lang/025.phpt2
-rw-r--r--tests/lang/026.phpt2
-rw-r--r--tests/lang/027.phpt2
-rw-r--r--tests/lang/028.phpt2
-rw-r--r--tests/lang/031.phpt2
-rw-r--r--tests/lang/032.phpt2
-rw-r--r--tests/lang/034.phpt2
40 files changed, 0 insertions, 77 deletions
diff --git a/tests/basic/001.phpt b/tests/basic/001.phpt
index 4cc79613c5..d0cc1ca082 100644
--- a/tests/basic/001.phpt
+++ b/tests/basic/001.phpt
@@ -1,7 +1,5 @@
--TEST--
Trivial "Hello World" test
---POST--
---GET--
--FILE--
<?php echo "Hello World"?>
--EXPECT--
diff --git a/tests/basic/002.phpt b/tests/basic/002.phpt
index 5a6187df7b..e9330c8bf9 100644
--- a/tests/basic/002.phpt
+++ b/tests/basic/002.phpt
@@ -4,7 +4,6 @@ Simple POST Method test
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a=Hello+World
---GET--
--FILE--
<?php
echo $_POST['a']; ?>
diff --git a/tests/basic/004.phpt b/tests/basic/004.phpt
index 1689d73f59..86bf431860 100644
--- a/tests/basic/004.phpt
+++ b/tests/basic/004.phpt
@@ -4,7 +4,6 @@ Two variables in POST data
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a=Hello+World&b=Hello+Again+World
---GET--
--FILE--
<?php
error_reporting(0);
diff --git a/tests/basic/005.phpt b/tests/basic/005.phpt
index 28c1997762..aa1d199825 100644
--- a/tests/basic/005.phpt
+++ b/tests/basic/005.phpt
@@ -4,7 +4,6 @@ Three variables in POST data
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a=Hello+World&b=Hello+Again+World&c=1
---GET--
--FILE--
<?php
error_reporting(0);
diff --git a/tests/basic/006.phpt b/tests/basic/006.phpt
index 3b88acc32f..c614cd9619 100644
--- a/tests/basic/006.phpt
+++ b/tests/basic/006.phpt
@@ -1,7 +1,5 @@
--TEST--
Add 3 variables together and print result
---POST--
---GET--
--FILE--
<?php $a=1; $b=2; $c=3; $d=$a+$b+$c; echo $d?>
--EXPECT--
diff --git a/tests/basic/007.phpt b/tests/basic/007.phpt
index 90fdc7e545..dc808b73b6 100644
--- a/tests/basic/007.phpt
+++ b/tests/basic/007.phpt
@@ -1,7 +1,5 @@
--TEST--
Multiply 3 variables and print result
---POST--
---GET--
--FILE--
<?php $a=2; $b=4; $c=8; $d=$a*$b*$c; echo $d?>
--EXPECT--
diff --git a/tests/basic/008.phpt b/tests/basic/008.phpt
index 927bf0e509..511aef0df4 100644
--- a/tests/basic/008.phpt
+++ b/tests/basic/008.phpt
@@ -1,7 +1,5 @@
--TEST--
Divide 3 variables and print result
---POST--
---GET--
--FILE--
<?php $a=27; $b=3; $c=3; $d=$a/$b/$c; echo $d?>
--EXPECT--
diff --git a/tests/basic/009.phpt b/tests/basic/009.phpt
index d78b195d0b..fefe529af1 100644
--- a/tests/basic/009.phpt
+++ b/tests/basic/009.phpt
@@ -1,7 +1,5 @@
--TEST--
Subtract 3 variables and print result
---POST--
---GET--
--FILE--
<?php $a=27; $b=7; $c=10; $d=$a-$b-$c; echo $d?>
--EXPECT--
diff --git a/tests/basic/010.phpt b/tests/basic/010.phpt
index 4440d99bf8..9cdfece9e1 100644
--- a/tests/basic/010.phpt
+++ b/tests/basic/010.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing | and & operators
---POST--
---GET--
--FILE--
<?php $a=8; $b=4; $c=8; echo $a|$b&$c?>
--EXPECT--
diff --git a/tests/lang/001.phpt b/tests/lang/001.phpt
index d90e9b8d3d..71df318478 100644
--- a/tests/lang/001.phpt
+++ b/tests/lang/001.phpt
@@ -1,7 +1,5 @@
--TEST--
Simple If condition test
---POST--
---GET--
--FILE--
<?php $a=1; if($a>0) { echo "Yes"; } ?>
--EXPECT--
diff --git a/tests/lang/002.phpt b/tests/lang/002.phpt
index dd2c83b4f6..ec14d01c3f 100644
--- a/tests/lang/002.phpt
+++ b/tests/lang/002.phpt
@@ -1,7 +1,5 @@
--TEST--
Simple While Loop Test
---POST--
---GET--
--FILE--
<?php
$a=1;
diff --git a/tests/lang/003.phpt b/tests/lang/003.phpt
index cb2a3c38cd..7049db9047 100644
--- a/tests/lang/003.phpt
+++ b/tests/lang/003.phpt
@@ -1,7 +1,5 @@
--TEST--
Simple Switch Test
---POST--
---GET--
--FILE--
<?php
$a=1;
diff --git a/tests/lang/004.phpt b/tests/lang/004.phpt
index bd47328c16..be8ebf4155 100644
--- a/tests/lang/004.phpt
+++ b/tests/lang/004.phpt
@@ -1,7 +1,5 @@
--TEST--
Simple If/Else Test
---POST--
---GET--
--FILE--
<?php
$a=1;
diff --git a/tests/lang/005.phpt b/tests/lang/005.phpt
index f74590e860..404a7cbbf6 100644
--- a/tests/lang/005.phpt
+++ b/tests/lang/005.phpt
@@ -1,7 +1,5 @@
--TEST--
Simple If/ElseIf/Else Test
---POST--
---GET--
--FILE--
<?php
$a=1;
diff --git a/tests/lang/006.phpt b/tests/lang/006.phpt
index e9e8c2357f..2a2db013ab 100644
--- a/tests/lang/006.phpt
+++ b/tests/lang/006.phpt
@@ -1,7 +1,5 @@
--TEST--
Nested If/ElseIf/Else Test
---POST--
---GET--
--FILE--
<?php
$a=1;
diff --git a/tests/lang/007.phpt b/tests/lang/007.phpt
index 04af8111fd..4576d4efa5 100644
--- a/tests/lang/007.phpt
+++ b/tests/lang/007.phpt
@@ -1,7 +1,5 @@
--TEST--
Function call with global and static variables
---POST--
---GET--
--FILE--
<?php
error_reporting(0);
diff --git a/tests/lang/008.phpt b/tests/lang/008.phpt
index 1e9c86ff5a..d335e6f135 100644
--- a/tests/lang/008.phpt
+++ b/tests/lang/008.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing recursive function
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/009.phpt b/tests/lang/009.phpt
index 96278c22b1..ea2aa9294d 100644
--- a/tests/lang/009.phpt
+++ b/tests/lang/009.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing function parameter passing
---POST--
---GET--
--FILE--
<?php
function test ($a,$b) {
diff --git a/tests/lang/010.phpt b/tests/lang/010.phpt
index e414baae6e..603abe34d5 100644
--- a/tests/lang/010.phpt
+++ b/tests/lang/010.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing function parameter passing with a return value
---POST--
---GET--
--FILE--
<?php
function test ($b) {
diff --git a/tests/lang/011.phpt b/tests/lang/011.phpt
index e648623845..771ef7c129 100644
--- a/tests/lang/011.phpt
+++ b/tests/lang/011.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing nested functions
---POST--
---GET--
--FILE--
<?php
function F()
diff --git a/tests/lang/012.phpt b/tests/lang/012.phpt
index b54132b906..117137a29b 100644
--- a/tests/lang/012.phpt
+++ b/tests/lang/012.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing stack after early function return
---POST--
---GET--
--FILE--
<?php
function F () {
diff --git a/tests/lang/013.phpt b/tests/lang/013.phpt
index 4b661c071a..be84cdcb8f 100644
--- a/tests/lang/013.phpt
+++ b/tests/lang/013.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing eval function
---POST--
---GET--
--FILE--
<?php
error_reporting(0);
diff --git a/tests/lang/014.phpt b/tests/lang/014.phpt
index 6338d7c23c..f0033b2f77 100644
--- a/tests/lang/014.phpt
+++ b/tests/lang/014.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing eval function inside user-defined function
---POST--
---GET--
--FILE--
<?php
function F ($a) {
diff --git a/tests/lang/015.phpt b/tests/lang/015.phpt
index 399f802866..952e7f19d7 100644
--- a/tests/lang/015.phpt
+++ b/tests/lang/015.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing include
---POST--
---GET--
--FILE--
<?php
include "015.inc";
diff --git a/tests/lang/016.phpt b/tests/lang/016.phpt
index 49c4d4d1a6..dbaa908b81 100644
--- a/tests/lang/016.phpt
+++ b/tests/lang/016.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing user-defined function in included file
---POST--
---GET--
--FILE--
<?php
include "016.inc";
diff --git a/tests/lang/017.phpt b/tests/lang/017.phpt
index bb18194e5d..fb90964820 100644
--- a/tests/lang/017.phpt
+++ b/tests/lang/017.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing user-defined function falling out of an If into another
---POST--
---GET--
--FILE--
<?php
$a = 1;
diff --git a/tests/lang/018.phpt b/tests/lang/018.phpt
index 8ef867cb62..638b131c2d 100644
--- a/tests/lang/018.phpt
+++ b/tests/lang/018.phpt
@@ -1,7 +1,5 @@
--TEST--
eval() test
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/019.phpt b/tests/lang/019.phpt
index f8339b94a3..6c0a1cab62 100644
--- a/tests/lang/019.phpt
+++ b/tests/lang/019.phpt
@@ -1,7 +1,5 @@
--TEST--
eval() test
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/020.phpt b/tests/lang/020.phpt
index e82ba6c467..46a2a2c1c0 100644
--- a/tests/lang/020.phpt
+++ b/tests/lang/020.phpt
@@ -1,7 +1,5 @@
--TEST--
Switch test 1
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/021.phpt b/tests/lang/021.phpt
index 132ffc20c4..aff45b6be3 100644
--- a/tests/lang/021.phpt
+++ b/tests/lang/021.phpt
@@ -1,7 +1,5 @@
--TEST--
Switch test 2
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/022.phpt b/tests/lang/022.phpt
index e1847b2c0e..dddc6c2955 100644
--- a/tests/lang/022.phpt
+++ b/tests/lang/022.phpt
@@ -1,7 +1,5 @@
--TEST--
Switch test 3
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/023.phpt b/tests/lang/023.phpt
index 4d7c4d5b5b..af9874410a 100644
--- a/tests/lang/023.phpt
+++ b/tests/lang/023.phpt
@@ -1,7 +1,5 @@
--TEST--
Regression test
---POST--
---GET--
--FILE--
PHP Regression Test
diff --git a/tests/lang/024.phpt b/tests/lang/024.phpt
index 848c5fbea8..954b58fa05 100644
--- a/tests/lang/024.phpt
+++ b/tests/lang/024.phpt
@@ -1,7 +1,5 @@
--TEST--
Looped regression test (may take a while)
---POST--
---GET--
--FILE--
<?php
for ($jdk=0; $jdk<50; $jdk++) {
diff --git a/tests/lang/025.phpt b/tests/lang/025.phpt
index 4f5397d5a8..382960f628 100644
--- a/tests/lang/025.phpt
+++ b/tests/lang/025.phpt
@@ -1,7 +1,5 @@
--TEST--
Mean recursion test
---POST--
---GET--
--FILE--
<?php
function RekTest ($nr) {
diff --git a/tests/lang/026.phpt b/tests/lang/026.phpt
index e201b75638..eb2d6214de 100644
--- a/tests/lang/026.phpt
+++ b/tests/lang/026.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing string scanner confirmance
---POST--
---GET--
--FILE--
<?php echo "\"\t\\'" . '\n\\\'a\\\b\\' ?>
--EXPECT--
diff --git a/tests/lang/027.phpt b/tests/lang/027.phpt
index 5cd44e0fab..d3eb74b22f 100644
--- a/tests/lang/027.phpt
+++ b/tests/lang/027.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing do-while loop
---POST--
---GET--
--FILE--
<?php
$i=3;
diff --git a/tests/lang/028.phpt b/tests/lang/028.phpt
index 4d95960dd3..bd4525ee60 100644
--- a/tests/lang/028.phpt
+++ b/tests/lang/028.phpt
@@ -1,7 +1,5 @@
--TEST--
Testing calling user-level functions from C
---POST--
---GET--
--FILE--
<?php
diff --git a/tests/lang/031.phpt b/tests/lang/031.phpt
index af99f3d219..695098abbd 100644
--- a/tests/lang/031.phpt
+++ b/tests/lang/031.phpt
@@ -1,7 +1,5 @@
--TEST--
Internal hash position bug on assignment (Bug #16227)
---POST--
---GET--
--FILE--
<?php
// reported by php.net@alienbill.com
diff --git a/tests/lang/032.phpt b/tests/lang/032.phpt
index 6000398ed6..caa4c7e430 100644
--- a/tests/lang/032.phpt
+++ b/tests/lang/032.phpt
@@ -1,7 +1,5 @@
--TEST--
Class method registration
---POST--
---GET--
--FILE--
<?php
class A {
diff --git a/tests/lang/034.phpt b/tests/lang/034.phpt
index 9b10603c83..475a0b7568 100644
--- a/tests/lang/034.phpt
+++ b/tests/lang/034.phpt
@@ -6,8 +6,6 @@ if (setlocale(LC_NUMERIC, "de_DE", "de", "german", "ge") === FALSE) {
print "skip";
}
?>
---POST--
---GET--
--FILE--
<?php
# activate the german locale