mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-12-26 03:27:31 +00:00
Mark SSH2 Test as Incomplete on Travis PHP 5.3.3 and below for now.
This commit is contained in:
parent
00c19f4cc1
commit
3d3d55b407
@ -8,6 +8,16 @@
|
|||||||
|
|
||||||
class Net_SSH2FunctionalTest extends PhpseclibFunctionalTestCase
|
class Net_SSH2FunctionalTest extends PhpseclibFunctionalTestCase
|
||||||
{
|
{
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
if (getenv('TRAVIS') && version_compare(PHP_VERSION, '5.3.3', '<=')) {
|
||||||
|
$this->markTestIncomplete(
|
||||||
|
'This test hangs on Travis CI on PHP 5.3.3 and below.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
parent::setUp();
|
||||||
|
}
|
||||||
|
|
||||||
public function testConstructor()
|
public function testConstructor()
|
||||||
{
|
{
|
||||||
$ssh = new Net_SSH2($this->getEnv('SSH_HOSTNAME'));
|
$ssh = new Net_SSH2($this->getEnv('SSH_HOSTNAME'));
|
||||||
|
Loading…
Reference in New Issue
Block a user