From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=49284 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ONAN2-0004e5-Bj for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ONAN1-0004Q4-9z for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10530) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ONAN1-0004PX-2o for qemu-devel@nongnu.org; Fri, 11 Jun 2010 15:58:27 -0400 From: Luiz Capitulino Date: Fri, 11 Jun 2010 16:58:09 -0300 Message-Id: <1276286295-17601-5-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> References: <1276286295-17601-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 04/10] check-qjson: Add more escape tests List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com Cc: qemu-devel@nongnu.org While there make the fail_unless() calls print error messages. IMPORTANT: The test for "\/" is failing, don't know why. Signed-off-by: Luiz Capitulino --- check-qjson.c | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/check-qjson.c b/check-qjson.c index 109e777..d365799 100644 --- a/check-qjson.c +++ b/check-qjson.c @@ -29,6 +29,13 @@ START_TEST(escaped_string) const char *decoded; int skip; } test_cases[] = { + { "\"\\b\"", "\b" }, + { "\"\\f\"", "\f" }, + { "\"\\n\"", "\n" }, + { "\"\\r\"", "\r" }, + { "\"\\t\"", "\t" }, + { "\"\\/\"", "\\/" }, + { "\"\\\\\"", "\\" }, { "\"\\\"\"", "\"" }, { "\"hello world \\\"embedded string\\\"\"", "hello world \"embedded string\"" }, @@ -49,11 +56,14 @@ START_TEST(escaped_string) fail_unless(qobject_type(obj) == QTYPE_QSTRING); str = qobject_to_qstring(obj); - fail_unless(strcmp(qstring_get_str(str), test_cases[i].decoded) == 0); + fail_unless(strcmp(qstring_get_str(str), test_cases[i].decoded) == 0, + "%s != %s\n", qstring_get_str(str), test_cases[i].decoded); if (test_cases[i].skip == 0) { str = qobject_to_json(obj); - fail_unless(strcmp(qstring_get_str(str), test_cases[i].encoded) == 0); + fail_unless(strcmp(qstring_get_str(str),test_cases[i].encoded) == 0, + "%s != %s\n", qstring_get_str(str), + test_cases[i].encoded); qobject_decref(obj); } -- 1.7.1.251.g92a7