From 3832684cca93d66af0c47d097386a2b5b21f1d99 Mon Sep 17 00:00:00 2001 From: jpobst Date: Tue, 16 Dec 2008 19:10:00 +0000 Subject: [PATCH] Change exit code to number of tests failed instead of hardcoded zero. git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mono@121623 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- eglib/test/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eglib/test/driver.c b/eglib/test/driver.c index 3f3ea84e2..b33421bf2 100644 --- a/eglib/test/driver.c +++ b/eglib/test/driver.c @@ -238,7 +238,7 @@ gint main(gint argc, gchar **argv) string_array_free(tests_to_run); } - return 0; + return global_tests - global_passed; } -- 2.11.4.GIT