skipped a test on hhvm
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 19 Sep 2013 11:41:36 +0000 (13:41 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 28 Sep 2013 11:27:49 +0000 (13:27 +0200)
test/Twig/Tests/LexerTest.php

index 94b2538..a5ed8fd 100644 (file)
@@ -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());