1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
From: =?UTF-8?q?Guido=20G=C3=BCnther?= <agx@sigxcpu.org>
Date: Mon, 7 Nov 2011 14:22:17 +0100
Subject: Skip patch since it crashes QEMU
See: #647707
---
scripts/domain/215-nic-hotplug-many.t | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/scripts/domain/215-nic-hotplug-many.t b/scripts/domain/215-nic-hotplug-many.t
index 5b935cc..1a10244 100644
--- a/scripts/domain/215-nic-hotplug-many.t
+++ b/scripts/domain/215-nic-hotplug-many.t
@@ -40,6 +40,7 @@ END {
$tck->cleanup if $tck;
}
+SKIP: {
my $xml = $tck->generic_domain("tck")->as_xml;
@@ -86,6 +87,8 @@ ok($newxml =~ m|$mac1|, "new XML has 1st NIC present");
ok($newxml =~ m|$mac2|, "new XML has 2nd NIC present");
ok($newxml =~ m|$mac3|, "new XML has 3rd NIC present");
+skip "Causes crash in QEMU (#647707)", 14 if $conn->get_type() eq "QEMU";
+
diag "Detaching the 2nd interface $mac2";
lives_ok { $dom->detach_device($netxml2); } "interface has been detached";
@@ -119,3 +122,5 @@ ok($newxml !~ m|$mac3|, "new XML has NOT got 3rd NIC present");
my $finalxml = $dom->get_xml_description;
is($initialxml, $finalxml, "final XML has removed the interfaces")
+
+}
--
|