summaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic')
-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
9 files changed, 0 insertions, 15 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--