diff options
author | Sander Roobol <sander@php.net> | 2002-03-08 19:16:19 +0000 |
---|---|---|
committer | Sander Roobol <sander@php.net> | 2002-03-08 19:16:19 +0000 |
commit | 58a52f93bc28a8c789c2320e138d69bbd4b045a6 (patch) | |
tree | a2ad276deee141dcc3bfcd54e8a71ad5f5fdea94 /tests | |
parent | ea48f89d2692e190c1b64059dfee1aca1c7c192d (diff) | |
download | php-git-58a52f93bc28a8c789c2320e138d69bbd4b045a6.tar.gz |
Fixed many tests, mostly incorrect paths.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basic/002.phpt | 2 | ||||
-rw-r--r-- | tests/basic/003.phpt | 2 | ||||
-rw-r--r-- | tests/basic/004.phpt | 2 | ||||
-rw-r--r-- | tests/basic/005.phpt | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/tests/basic/002.phpt b/tests/basic/002.phpt index 48fe5f5be8..9dffe1686a 100644 --- a/tests/basic/002.phpt +++ b/tests/basic/002.phpt @@ -1,5 +1,7 @@ --TEST-- Simple POST Method test +--SKIPIF-- +<?php if(php_sapi_name()=='cli'); echo 'skip'; ?> --POST-- a=Hello+World --GET-- diff --git a/tests/basic/003.phpt b/tests/basic/003.phpt index 9c105f7398..dfc714a8fc 100644 --- a/tests/basic/003.phpt +++ b/tests/basic/003.phpt @@ -1,5 +1,7 @@ --TEST-- GET and POST Method combined +--SKIPIF-- +<?php if(php_sapi_name()=='cli'); echo 'skip'; ?> --POST-- a=Hello+World --GET-- diff --git a/tests/basic/004.phpt b/tests/basic/004.phpt index b7e50e0f33..694034ae90 100644 --- a/tests/basic/004.phpt +++ b/tests/basic/004.phpt @@ -1,5 +1,7 @@ --TEST-- Two variables in POST data +--SKIPIF-- +<?php if(php_sapi_name()=='cli'); echo 'skip'; ?> --POST-- a=Hello+World&b=Hello+Again+World --GET-- diff --git a/tests/basic/005.phpt b/tests/basic/005.phpt index 651b83d81a..d7bd145ccd 100644 --- a/tests/basic/005.phpt +++ b/tests/basic/005.phpt @@ -1,5 +1,7 @@ --TEST-- Three variables in POST data +--SKIPIF-- +<?php if(php_sapi_name()=='cli'); echo 'skip'; ?> --POST-- a=Hello+World&b=Hello+Again+World&c=1 --GET-- |