through the last days, I was working with Thomas and Gavin on the unit tests for Zend_Date. when I was trying to run the tests, PHP crashed every time at the same point of the test. after 2 days and doing more tests, I found that the cause of this crash was XDebug-2.0.0rc2-5.1.2 . PHP crashed only when trying running the following testbed.
 
    public function testAddArpa()
    {
        $this->markTestIncomplete();
        $locale = new Zend_Locale(‘de_AT’);
        $date = new Zend_Date(1234567890,null,false,$locale);
        $d2   = new Zend_Date(1234567899,null,false,$locale);
        ……
        ……
    }
 
notic the call for $this->markTestIncomplete() . if we remove it, every thing goes well, but if used, PHP craches. I’m now using the rc1 version of XDebug and every thing went ok.
 

No related posts.