From nobody Tue Dec 16 06:25:29 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1525970676192557.1378396182562; Thu, 10 May 2018 09:44:36 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 63CC5C047B96; Thu, 10 May 2018 16:44:34 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 270DA2016BF2; Thu, 10 May 2018 16:44:34 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id D5ED64CA94; Thu, 10 May 2018 16:44:33 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w4AGiT2h013007 for ; Thu, 10 May 2018 12:44:29 -0400 Received: by smtp.corp.redhat.com (Postfix) id 66D976403C; Thu, 10 May 2018 16:44:29 +0000 (UTC) Received: from icr.brq.redhat.com (unknown [10.43.2.100]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0C0F864660 for ; Thu, 10 May 2018 16:44:28 +0000 (UTC) From: =?UTF-8?q?J=C3=A1n=20Tomko?= To: libvir-list@redhat.com Date: Thu, 10 May 2018 18:44:14 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCHv2 02/12] tests: replace references to yajl X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.25 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Thu, 10 May 2018 16:44:35 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Use "libvirt not compiled with JSON" instead of mentioning yajl specifically. Signed-off-by: J=C3=A1n Tomko --- tests/qemuagenttest.c | 2 +- tests/qemucapabilitiestest.c | 2 +- tests/qemucaps2xmltest.c | 2 +- tests/qemucommandutiltest.c | 2 +- tests/qemuhotplugtest.c | 2 +- tests/qemumigparamstest.c | 2 +- tests/qemumonitorjsontest.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/qemuagenttest.c b/tests/qemuagenttest.c index f214eb461f..b9d6153540 100644 --- a/tests/qemuagenttest.c +++ b/tests/qemuagenttest.c @@ -908,7 +908,7 @@ mymain(void) int ret =3D 0; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemucapabilitiestest.c b/tests/qemucapabilitiestest.c index 1b5970a4c5..bdfc97614f 100644 --- a/tests/qemucapabilitiestest.c +++ b/tests/qemucapabilitiestest.c @@ -140,7 +140,7 @@ mymain(void) testQemuData data; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemucaps2xmltest.c b/tests/qemucaps2xmltest.c index f4838f7980..7948859d87 100644 --- a/tests/qemucaps2xmltest.c +++ b/tests/qemucaps2xmltest.c @@ -166,7 +166,7 @@ mymain(void) testQemuData data; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemucommandutiltest.c b/tests/qemucommandutiltest.c index eb155e7e16..1801182304 100644 --- a/tests/qemucommandutiltest.c +++ b/tests/qemucommandutiltest.c @@ -77,7 +77,7 @@ mymain(void) testQemuCommandBuildObjectFromJSONData data1; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemuhotplugtest.c b/tests/qemuhotplugtest.c index 85e53653e1..7e63680f7f 100644 --- a/tests/qemuhotplugtest.c +++ b/tests/qemuhotplugtest.c @@ -589,7 +589,7 @@ mymain(void) struct testQemuHotplugCpuParams cpudata; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemumigparamstest.c b/tests/qemumigparamstest.c index ba62aacc54..b117e5b6bb 100644 --- a/tests/qemumigparamstest.c +++ b/tests/qemumigparamstest.c @@ -204,7 +204,7 @@ mymain(void) int ret =3D 0; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 diff --git a/tests/qemumonitorjsontest.c b/tests/qemumonitorjsontest.c index 9a83c9a608..8ebf322cd1 100644 --- a/tests/qemumonitorjsontest.c +++ b/tests/qemumonitorjsontest.c @@ -2865,7 +2865,7 @@ mymain(void) char *metaschema =3D NULL; =20 #if !WITH_YAJL - fputs("libvirt not compiled with yajl, skipping this test\n", stderr); + fputs("libvirt not compiled with JSON, skipping this test\n", stderr); return EXIT_AM_SKIP; #endif =20 --=20 2.16.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list