Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorJonathan Pobst <monkey@jpobst.com>2008-12-16 22:10:00 +0300
committerJonathan Pobst <monkey@jpobst.com>2008-12-16 22:10:00 +0300
commit7b896c3324fe2afd86a059643a9ffa096a0f70e2 (patch)
treeadbbb5a4fe17abd09c738ea83bd6be72cd928df0 /eglib
parentd077112f1c28d611fc1b367987e4e55798c65242 (diff)
Change exit code to number of tests failed instead of hardcoded zero.
svn path=/trunk/mono/; revision=121623
Diffstat (limited to 'eglib')
-rw-r--r--eglib/test/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eglib/test/driver.c b/eglib/test/driver.c
index 3f3ea84e2f9..b33421bf2be 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;
}