From: Fabien Potencier Date: Thu, 19 Sep 2013 11:41:36 +0000 (+0200) Subject: skipped a test on hhvm X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=f939ea6b613ae8a09bf4c9d7c98fb3b919d748ee;p=konrad%2Ftwig.git skipped a test on hhvm --- diff --git a/test/Twig/Tests/LexerTest.php b/test/Twig/Tests/LexerTest.php index 94b2538..a5ed8fd 100644 --- a/test/Twig/Tests/LexerTest.php +++ b/test/Twig/Tests/LexerTest.php @@ -141,6 +141,10 @@ class Twig_Tests_LexerTest extends PHPUnit_Framework_TestCase public function testBigNumbers() { + if ('hiphop' === substr(PHP_VERSION, -6)) { + $this->markTestSkipped('hhvm thinks that the number is actually a T_CONSTANT_ENCAPSED_STRING!'); + } + $template = '{{ 922337203685477580700 }}'; $lexer = new Twig_Lexer(new Twig_Environment());