PHPUnit Segmentation fault

后端 未结 13 848
故里飘歌
故里飘歌 2020-12-28 14:56

When a PHPUnit test fails normally on my dev box (Linux Mint), it causes a \"Segmentation Fault\" on my Continous Integration box (Centos). Both machines are running the sam

13条回答
  •  余生分开走
    2020-12-28 15:37

    I had similar problem and by disabling the garbge collactor in

    PHPStorm => Edit configuration => Interpreter option : -d zend.enable_gc=0

    Or if you are running your tests from the command line you may try adding :

    -d zend.enable_gc=0

提交回复
热议问题