From 72a45d6a8d94bda7143cc2abfa0ec74095321aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=98=E7=BC=98?= Date: Sun, 8 May 2016 23:55:20 +0800 Subject: [PATCH] =?UTF-8?q?hhvm=E4=B8=8Bdebug=E5=AD=98=E5=9C=A8=E7=89=B9?= =?UTF-8?q?=E6=AE=8A=E5=BC=82=E5=B8=B8=EF=BC=8C=E5=8A=9F=E8=83=BD=E6=B5=8B?= =?UTF-8?q?=E8=AF=95ok=EF=BC=8C=E6=9A=82=E6=97=B6=E4=B8=8D=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/thinkphp/library/think/debugTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/thinkphp/library/think/debugTest.php b/tests/thinkphp/library/think/debugTest.php index 5be45de2..90c5cb93 100644 --- a/tests/thinkphp/library/think/debugTest.php +++ b/tests/thinkphp/library/think/debugTest.php @@ -33,6 +33,10 @@ class debugTest extends \PHPUnit_Framework_TestCase */ protected function setUp() { + if (strstr(PHP_VERSION, 'hhvm')) { + $this->markTestSkipped("HHVM下跳过测试"); + } + $this->object = new Debug(); }