From: Peter Krempa Date: Thu, 19 Jul 2018 12:51:21 +0000 (+0200) Subject: tests: qemuxml2argv: Rename disk-write-cache test do disk-cache X-Git-Tag: v4.6.0-rc1~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e38a890c93bb020ff30708fe2994dc7661323b06;p=thirdparty%2Flibvirt.git tests: qemuxml2argv: Rename disk-write-cache test do disk-cache We'll aggregate testing of all cache modes in this test later on. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/tests/qemuxml2argvdata/disk-write-cache.x86_64-2.6.0.args b/tests/qemuxml2argvdata/disk-cache.x86_64-2.6.0.args similarity index 100% rename from tests/qemuxml2argvdata/disk-write-cache.x86_64-2.6.0.args rename to tests/qemuxml2argvdata/disk-cache.x86_64-2.6.0.args diff --git a/tests/qemuxml2argvdata/disk-write-cache.x86_64-2.7.0.args b/tests/qemuxml2argvdata/disk-cache.x86_64-2.7.0.args similarity index 100% rename from tests/qemuxml2argvdata/disk-write-cache.x86_64-2.7.0.args rename to tests/qemuxml2argvdata/disk-cache.x86_64-2.7.0.args diff --git a/tests/qemuxml2argvdata/disk-write-cache.x86_64-latest.args b/tests/qemuxml2argvdata/disk-cache.x86_64-latest.args similarity index 100% rename from tests/qemuxml2argvdata/disk-write-cache.x86_64-latest.args rename to tests/qemuxml2argvdata/disk-cache.x86_64-latest.args diff --git a/tests/qemuxml2argvdata/disk-write-cache.xml b/tests/qemuxml2argvdata/disk-cache.xml similarity index 100% rename from tests/qemuxml2argvdata/disk-write-cache.xml rename to tests/qemuxml2argvdata/disk-cache.xml diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c index 09b9e206cc..6f6b5869b3 100644 --- a/tests/qemuxml2argvtest.c +++ b/tests/qemuxml2argvtest.c @@ -1037,9 +1037,9 @@ mymain(void) DO_TEST("disk-cache-v2-none", NONE); DO_TEST("disk-cache-directsync", NONE); DO_TEST("disk-cache-unsafe", NONE); - DO_TEST_CAPS_VER("disk-write-cache", "2.6.0"); - DO_TEST_CAPS_VER("disk-write-cache", "2.7.0"); - DO_TEST_CAPS_LATEST("disk-write-cache"); + DO_TEST_CAPS_VER("disk-cache", "2.6.0"); + DO_TEST_CAPS_VER("disk-cache", "2.7.0"); + DO_TEST_CAPS_LATEST("disk-cache"); DO_TEST("disk-network-nbd", NONE); DO_TEST("disk-network-nbd-export", NONE); DO_TEST("disk-network-nbd-ipv6", NONE);