diff options
author | Pierre Joye <pajoye@php.net> | 2011-12-06 13:34:45 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2011-12-06 13:34:45 +0000 |
commit | 0c4915d580d919c3803972203883b15ccc771797 (patch) | |
tree | a81f34665bce26727aea144dc8c1cdeeaa56b042 /ext/phar/tests | |
parent | 4a91e36366cffa7e2b4b801d034c464d3fb562f9 (diff) | |
download | php-git-0c4915d580d919c3803972203883b15ccc771797.tar.gz |
- add windows version of this test
Diffstat (limited to 'ext/phar/tests')
-rw-r--r-- | ext/phar/tests/phar_gobyebye.phpt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/phar/tests/phar_gobyebye.phpt b/ext/phar/tests/phar_gobyebye.phpt index d55bef0c30..608e950768 100644 --- a/ext/phar/tests/phar_gobyebye.phpt +++ b/ext/phar/tests/phar_gobyebye.phpt @@ -1,7 +1,10 @@ --TEST-- Phar: test edge cases of intercepted functions when the underlying phar archive has been unlinkArchive()d --SKIPIF-- -<?php if (!extension_loaded("phar")) die("skip");?> +<?php +if (defined('PHP_WINDOWS_VERSION_MAJOR')) die("skip"); +if (!extension_loaded("phar")) die("skip"); +?> --INI-- phar.readonly=0 --FILE-- |