--- /tmp/peartests/PHPUnitTestRunner.php	2007-11-26 02:46:16.000000000 -0500
+++ PHPUnitTestRunner.php	2007-11-26 02:39:57.976194700 -0500
@@ -35,7 +35,8 @@
 {
 	const SUCCESS = 0;
 	const FAILURES = 1;
-	const ERRORS = 2;
+	const ERRORS = 2;
+	const INCOMPLETES = 3;
 
 	private $test = NULL;
 	private $suite = NULL;
@@ -117,9 +118,14 @@
 			$this->retCode = self::ERRORS;
 		}
 
-		else if ($res->failureCount() != 0 || $res->notImplementedCount() != 0 || $res->skippedCount() != 0)
+		else if ($res->failureCount() != 0)
 		{
 			$this->retCode = self::FAILURES;
+		}
+		
+		else if ($res->skippedCount() != 0)
+		{
+		    $this->retCode = self::INCOMPLETES;
 		}
 	}
 

