[gnome-desktop-testing] runner: Use automake test output syntax
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-desktop-testing] runner: Use automake test output syntax
- Date: Mon, 2 Nov 2015 13:58:28 +0000 (UTC)
commit 048850731a640532ef55a61df7357fcc6d2ad501
Author: Maxin B. John <maxin john intel com>
Date: Mon Nov 2 12:18:35 2015 +0200
runner: Use automake test output syntax
The terms `FAIL` instead of `FAILED` and `SKIP` instead of `SKIPPED`
match what Automake does.
Signed-off-by: Maxin B. John <maxin john intel com>
src/gnome-desktop-testing-runner.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gnome-desktop-testing-runner.c b/src/gnome-desktop-testing-runner.c
index de17bc0..036603e 100755
--- a/src/gnome-desktop-testing-runner.c
+++ b/src/gnome-desktop-testing-runner.c
@@ -300,13 +300,13 @@ log_test_completion (Test *test,
else if (test->state == TEST_STATE_COMPLETE_FAILED)
{
msgid_value = ONE_TEST_FAILED_MSGID;
- msg = g_strconcat ("FAILED: ", test->name, " (", reason, ")", NULL);
+ msg = g_strconcat ("FAIL: ", test->name, " (", reason, ")", NULL);
g_ptr_array_add (app->failed_test_msgs, g_strdup (msg));
}
else if (test->state == TEST_STATE_COMPLETE_SKIPPED)
{
msgid_value = ONE_TEST_SKIPPED_MSGID;
- msg = g_strconcat ("SKIPPED: ", test->name, NULL);
+ msg = g_strconcat ("SKIP: ", test->name, NULL);
}
else
g_assert_not_reached ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]