Skip Digest Access Authentication test on HHVM

This commit is contained in:
Zach Borboa
2015-04-23 16:19:47 -07:00
parent bfb932dc30
commit 8ce0a208b5
+6
View File
@@ -534,6 +534,12 @@ class CurlTest extends PHPUnit_Framework_TestCase
public function testDigestHttpAuth()
{
// Skip Digest Access Authentication test on HHVM.
// https://github.com/facebook/hhvm/issues/5201
if (defined('HHVM_VERSION')) {
return;
}
$username = 'myusername';
$password = 'mypassword';
$invalid_password = 'anotherpassword';