summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2010-02-12 17:09:09 +0000
committerJani Taskinen <jani@php.net>2010-02-12 17:09:09 +0000
commitbd3a33df8a42d4970e3b50c732e121395c914b94 (patch)
tree9e5f829b80579e91e5068528510f1fe905de71d3
parent68e527bdb77a7387a18b419fff5a11d75405ea0e (diff)
downloadphp-git-bd3a33df8a42d4970e3b50c732e121395c914b94.tar.gz
- Removed duplicate tests (bug #51007)
-rw-r--r--ext/posix/tests/posix_uname.phpt35
1 files changed, 0 insertions, 35 deletions
diff --git a/ext/posix/tests/posix_uname.phpt b/ext/posix/tests/posix_uname.phpt
deleted file mode 100644
index fe6fb17481..0000000000
--- a/ext/posix/tests/posix_uname.phpt
+++ /dev/null
@@ -1,35 +0,0 @@
---TEST--
-Test posix_uname()
---DESCRIPTION--
-Gets information about the system.
-Source code: ext/posix/posix.c
---CREDITS--
-Falko Menge, mail at falko-menge dot de
-PHP Testfest Berlin 2009-05-10
---SKIPIF--
-<?php
- if (!extension_loaded('posix')) {
- die('SKIP - POSIX extension not available');
- }
-?>
---FILE--
-<?php
- $uname = posix_uname();
- unset($uname['domainname']);
- var_dump($uname);
-?>
-===DONE===
---EXPECTF--
-array(5) {
- [u"sysname"]=>
- string(%d) "%s"
- [u"nodename"]=>
- string(%d) "%s"
- [u"release"]=>
- string(%d) "%s"
- [u"version"]=>
- string(%d) "%s"
- [u"machine"]=>
- string(%d) "%s"
-}
-===DONE===