diff options
author | Ulf Wendel <uw@php.net> | 2011-09-06 16:39:55 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2011-09-06 16:39:55 +0000 |
commit | d73b28595008af4566076b11aec7c42d6dd45166 (patch) | |
tree | 4ad3cd212586519aafe4645adbab8495bcace2f1 /ext/posix | |
parent | 7420cf22bc3dd7d2086421ee1b9659bc9ef559ed (diff) | |
download | php-git-d73b28595008af4566076b11aec7c42d6dd45166.tar.gz |
Fixing SKIPIF
Diffstat (limited to 'ext/posix')
-rw-r--r-- | ext/posix/tests/posix_getpgid_variation.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/posix/tests/posix_getpgid_variation.phpt b/ext/posix/tests/posix_getpgid_variation.phpt index 34a4beb0a9..e53d58f393 100644 --- a/ext/posix/tests/posix_getpgid_variation.phpt +++ b/ext/posix/tests/posix_getpgid_variation.phpt @@ -2,7 +2,7 @@ Test posix_getpgid() function : variation --SKIPIF-- <?php -if((!extension_loaded("posix")) || (!function_exists(posix_getpgid))) { +if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) { print "skip - POSIX extension not loaded or posix_getpgid() does not exist"; } ?> |