summaryrefslogtreecommitdiff
path: root/ext/posix
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2011-09-06 06:57:53 +0000
committerPierre Joye <pajoye@php.net>2011-09-06 06:57:53 +0000
commit9a6b6f3dc7cf6a97c2c28cf8b65ab82433316d97 (patch)
tree8032be993b7ee297048e926d8fdb084555fb90db /ext/posix
parent8f7fab93585d2e6feaf7b1d71d3b986b3a2324c0 (diff)
downloadphp-git-9a6b6f3dc7cf6a97c2c28cf8b65ab82433316d97.tar.gz
- add skipif
Diffstat (limited to 'ext/posix')
-rw-r--r--ext/posix/tests/posix_ttyname_error.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation1.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation2.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation3.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation4.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation5.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation6.phpt6
-rw-r--r--ext/posix/tests/posix_ttyname_variation7.phpt6
8 files changed, 48 insertions, 0 deletions
diff --git a/ext/posix/tests/posix_ttyname_error.phpt b/ext/posix/tests/posix_ttyname_error.phpt
index e3ec695e54..f7b011e773 100644
--- a/ext/posix/tests/posix_ttyname_error.phpt
+++ b/ext/posix/tests/posix_ttyname_error.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by calling it more than or less than its expected
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation1.phpt b/ext/posix/tests/posix_ttyname_variation1.phpt
index 072b9fa672..efbf64a4b7 100644
--- a/ext/posix/tests/posix_ttyname_variation1.phpt
+++ b/ext/posix/tests/posix_ttyname_variation1.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with array values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation2.phpt b/ext/posix/tests/posix_ttyname_variation2.phpt
index f46821b0cc..324614275f 100644
--- a/ext/posix/tests/posix_ttyname_variation2.phpt
+++ b/ext/posix/tests/posix_ttyname_variation2.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with boolean values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation3.phpt b/ext/posix/tests/posix_ttyname_variation3.phpt
index 30054265a0..a3ebc8cc5d 100644
--- a/ext/posix/tests/posix_ttyname_variation3.phpt
+++ b/ext/posix/tests/posix_ttyname_variation3.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with emptyUnsetUndefNul
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation4.phpt b/ext/posix/tests/posix_ttyname_variation4.phpt
index 3215492793..da999341e5 100644
--- a/ext/posix/tests/posix_ttyname_variation4.phpt
+++ b/ext/posix/tests/posix_ttyname_variation4.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with float values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation5.phpt b/ext/posix/tests/posix_ttyname_variation5.phpt
index 661dd606f9..7290f07dc3 100644
--- a/ext/posix/tests/posix_ttyname_variation5.phpt
+++ b/ext/posix/tests/posix_ttyname_variation5.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with int values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation6.phpt b/ext/posix/tests/posix_ttyname_variation6.phpt
index 020aef1156..eecae6769e 100644
--- a/ext/posix/tests/posix_ttyname_variation6.phpt
+++ b/ext/posix/tests/posix_ttyname_variation6.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with object values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php
diff --git a/ext/posix/tests/posix_ttyname_variation7.phpt b/ext/posix/tests/posix_ttyname_variation7.phpt
index b39916c5bc..8a92ef627e 100644
--- a/ext/posix/tests/posix_ttyname_variation7.phpt
+++ b/ext/posix/tests/posix_ttyname_variation7.phpt
@@ -4,6 +4,12 @@ Test function posix_ttyname() by substituting argument 1 with string values.
Marco Fabbri mrfabbri@gmail.com
Francesco Fullone ff@ideato.it
#PHPTestFest Cesena Italia on 2009-06-20
+--SKIPIF--
+<?php
+if (!extension_loaded('posix')) {
+ die('SKIP The posix extension is not loaded.');
+}
+?>
--FILE--
<?php