Merge "Temporarily skip a test that fails on HHVM."

This commit is contained in:
jenkins-bot 2015-11-11 21:45:47 +00:00 committed by Gerrit Code Review
commit 48e353d926

View file

@ -3,6 +3,15 @@
class Scribunto_LuaTextLibraryTests extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'TextLibraryTests';
public function __construct( $name = null, array $data = array(), $dataName = '', $engineName = null ) {
parent::__construct( $name, $data, $dataName, $engineName);
if ( defined('HHVM_VERSION') ) {
// HHVM bug https://github.com/facebook/hhvm/issues/5813$
$this->skipTests['json decode, invalid values (trailing comma)'] =
'json decode bug in HHVM';
}
}
protected function setUp() {
parent::setUp();