diff options
author | Christopher Jones <sixd@php.net> | 2013-08-14 15:45:06 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2013-08-14 15:45:06 -0700 |
commit | 9d62807190ebda858acbb09ad832c96570a97c40 (patch) | |
tree | 900c0865572f7724d129cd7f24169dc24f446486 /ext/standard/tests | |
parent | 7f69f07fc18f750843e756668a1a8a9178cdef97 (diff) | |
download | php-git-9d62807190ebda858acbb09ad832c96570a97c40.tar.gz |
Skip test if SKIP_ONLINE_TESTS set
Diffstat (limited to 'ext/standard/tests')
-rw-r--r-- | ext/standard/tests/file/file_get_contents_error001.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/tests/file/file_get_contents_error001.phpt b/ext/standard/tests/file/file_get_contents_error001.phpt index 127901ad79..a347d9d3d1 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 |