PHPUnit reporting "Aborted" no matter what tests are run
Posted
by GrumpyCanuck
on Stack Overflow
See other posts from Stack Overflow
or by GrumpyCanuck
Published on 2010-06-17T20:54:16Z
Indexed on
2010/06/17
21:03 UTC
Read the original article
Hit count: 328
Having a weird problem with PHPUnit. We're using PHPUnit as part of a continuous integration environment, that contains one app written using Zend Framework and one app written using CodeIgniter.
Unit tests run just fine under Zend Framework, but whenever I run the tests for CodeIgniter using fooStack's CIUnit bridge, I always get the same problem at the end:
PHPUnit 3.4.14 by Sebastian Bergmann.
............... .
Time: 1 second, Memory: 7.00Mb
OK (16 tests, 14 assertions)
Aborted
First off, I do not know what those empty spaces between the . means.
Secondly, no matter what test I run (all of them or each one separately) I get the same Aborted message at the very end. The tests themselves do not contain any exit or die statements.
When I run the same version of PHPUnit on my laptop (running OS-X Snow Leopard and same version of Zend Server Community Edition) I do not get that aborted message.
Running PHP 5.3.2 on Ubuntu installed using Zend Server Community Edition.
Any help with this would be greatly appreciated.
© Stack Overflow or respective owner