Fix continuous integration tests for HHVM

This commit is contained in:
Zach Borboa
2015-08-19 18:07:04 -07:00
parent 5f7c12e231
commit e46dc8146e
3 changed files with 8 additions and 1 deletions
-1
View File
@@ -10,7 +10,6 @@ php:
matrix:
allow_failures:
- php: hhvm
- php: nightly
before_script:
@@ -1614,6 +1614,12 @@ class MultiCurlTest extends PHPUnit_Framework_TestCase
public function testDigestHttpAuthSuccess()
{
// 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';
+2
View File
@@ -46,4 +46,6 @@ server {
}
EOF
sudo /usr/share/hhvm/install_fastcgi.sh
sudo /etc/init.d/hhvm restart
sudo service nginx restart
fi