Commit:    9d62807190ebda858acbb09ad832c96570a97c40
Author:    Christopher Jones <s...@php.net>         Wed, 14 Aug 2013 15:45:06 
-0700
Parents:   7f69f07fc18f750843e756668a1a8a9178cdef97
Branches:  PHP-5.4 PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=9d62807190ebda858acbb09ad832c96570a97c40

Log:
Skip test if SKIP_ONLINE_TESTS set

Changed paths:
  M  ext/standard/tests/file/file_get_contents_error001.phpt


Diff:
diff --git a/ext/standard/tests/file/file_get_contents_error001.phpt 
b/ext/standard/tests/file/file_get_contents_error001.phpt
index 127901a..a347d9d 100644
--- a/ext/standard/tests/file/file_get_contents_error001.phpt
+++ b/ext/standard/tests/file/file_get_contents_error001.phpt
@@ -10,6 +10,7 @@ display_errors=false
        if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
        if (!function_exists("file_get_contents"))
                die ("skip file_get_contents function is not found");
+       if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
 ?>
 --FILE--
 <?php


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to