diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2017-09-28 15:33:50 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2017-10-03 16:18:28 -0400 |
commit | 69420ae2c587c75cfb915330d4f60f866281345b (patch) | |
tree | c3db9bef9e74a801c0f42e31d0a1b8ab6b78800c /tests | |
parent | e6f5fa6d95e2661477471c6ff1a6a0c379421785 (diff) | |
download | gdm-69420ae2c587c75cfb915330d4f60f866281345b.tar.gz |
Use standard exit codes.
Use EXIT_ defines for readibility.
There were some exit codes > 1, but they don't seem to be checked by any of the
parent process code. This does mean that the logs might have changed, but
modern logging techniques have probably made this obsolete.
https://bugzilla.gnome.org/show_bug.cgi?id=788307
Diffstat (limited to 'tests')
-rw-r--r-- | tests/m-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/m-common.c b/tests/m-common.c index 62f1f44a..0c533d04 100644 --- a/tests/m-common.c +++ b/tests/m-common.c @@ -54,7 +54,7 @@ main (int argc, char **argv) if (error != NULL) { g_warning ("%s", error->message); g_error_free (error); - exit (1); + exit (EXIT_FAILURE); } r = srunner_create (suite_common_address ()); |