We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2516eb2 commit 0ad8482Copy full SHA for 0ad8482
tests/TestRedis.php
@@ -3271,6 +3271,6 @@ public function testTime() {
3271
}
3272
3273
3274
-TestSuite::run("Redis_Test");
+exit(TestSuite::run("Redis_Test"));
3275
3276
?>
tests/test.php
@@ -51,9 +51,11 @@ public static function run($className) {
51
52
if(empty($className::$errors)) {
53
echo "All tests passed.\n";
54
+ return 0;
55
56
57
echo implode('', $className::$errors);
58
+ return 1;
59
60
61
0 commit comments