Bug #63147: introduce SKIP_ONLINE_TESTS, for gethostbyname

This commit is contained in:
Remi Collet 2012-09-24 09:15:03 +02:00 committed by Stanislav Malyshev
parent 189b99aee1
commit 71c61921f3
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ gethostbyname() function - basic type return test
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if (getenv("SKIP_ONLINE_TESTS")) die("skip test requiring internet connection");
?>
--FILE--
<?php

View File

@ -5,6 +5,7 @@ gethostbyname() function - basic return valid ip address test
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
if (getenv("SKIP_ONLINE_TESTS")) die("skip test requiring internet connection");
?>
--FILE--
<?php