From: Guillaume Desmottes Date: Tue, 8 Jun 2010 14:50:09 +0000 (+0200) Subject: empathy-parser-test: stop as soon a test fails X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=ce6520bd5432a14f9d2689aae388747a9303c014 empathy-parser-test: stop as soon a test fails That's much easier to spot the test failing. --- diff --git a/tests/empathy-parser-test.c b/tests/empathy-parser-test.c index 9562a37d..e767852f 100644 --- a/tests/empathy-parser-test.c +++ b/tests/empathy-parser-test.c @@ -106,7 +106,6 @@ test_parsers (void) {NULL, NULL} }; guint i; - gboolean failed = FALSE; DEBUG ("Started"); for (i = 0; tests[i] != NULL; i += 2) @@ -119,13 +118,10 @@ test_parsers (void) ok = !tp_strdiff (tests[i + 1], string->str); DEBUG ("'%s' => '%s': %s", tests[i], string->str, ok ? "OK" : "FAILED"); - if (!ok) - failed = TRUE; + g_assert (ok); g_string_free (string, TRUE); } - - g_assert (!failed); } int