Commit: b4b0aaae9331edcd8de7ca9062c0c8478265b008 Author: Matt Ficken <mattfic...@php.net> Tue, 29 May 2012 16:37:19 +0200 Committer: Anatoliy Belsky <a...@php.net> Tue, 29 May 2012 16:37:19 +0200 Parents: dbc727373c6b9a086a4b3d28608acb6fadf7a8fd Branches: PHP-5.3 PHP-5.4 master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=b4b0aaae9331edcd8de7ca9062c0c8478265b008 Log: Bug #62177 deactivate the linux test version on win Bugs: https://bugs.php.net/62177 Changed paths: M ext/fileinfo/tests/finfo_file_regex.phpt Diff: diff --git a/ext/fileinfo/tests/finfo_file_regex.phpt b/ext/fileinfo/tests/finfo_file_regex.phpt index c1cc36f..ee4c8b0 100644 --- a/ext/fileinfo/tests/finfo_file_regex.phpt +++ b/ext/fileinfo/tests/finfo_file_regex.phpt @@ -1,7 +1,11 @@ --TEST-- Test finfo_file() function : regex rules --SKIPIF-- -<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> +<?php require_once(dirname(__FILE__) . '/skipif.inc'); +if (substr(PHP_OS, 0, 3) == 'WIN') { + die('skip.. only for Non Windows Systems'); +} +?> --FILE-- <?php /** -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php