From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 072C2C433F5 for ; Thu, 29 Sep 2022 22:40:56 +0000 (UTC) Received: from localhost ([::1]:37810 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oe2D9-0005IF-63 for qemu-devel@archiver.kernel.org; Thu, 29 Sep 2022 18:40:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58896) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oe28o-00065e-3G for qemu-devel@nongnu.org; Thu, 29 Sep 2022 18:36:26 -0400 Received: from relay.virtuozzo.com ([130.117.225.111]:42747) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oe28j-0001xb-Lo for qemu-devel@nongnu.org; Thu, 29 Sep 2022 18:36:25 -0400 Received: from [192.168.16.158] (helo=mikewrk.sw.ru) by relay.virtuozzo.com with esmtp (Exim 4.95) (envelope-from ) id 1oe25e-0071e8-Bt; Fri, 30 Sep 2022 00:35:35 +0200 To: qemu-devel@nongnu.org Cc: Thomas Huth , Laurent Vivier , Paolo Bonzini , "Dr . David Alan Gilbert" , den@virtuozzo.com Subject: [PATCH v5 0/9] Add 'q35' machine type to hotplug tests Date: Fri, 30 Sep 2022 01:35:38 +0300 Message-Id: <20220929223547.1429580-1-michael.labiuk@virtuozzo.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=130.117.225.111; envelope-from=michael.labiuk@virtuozzo.com; helo=relay.virtuozzo.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Reply-to: Michael Labiuk From: Michael Labiuk via Add pci bridge setting to run hotplug tests on q35 machine type. Hotplug tests was bounded to 'pc' machine type by commit 7b172333f1b v5 -> v4: * Unify device removing in tests. * Using qtest_has_machine("q35") as condition. * fixed typos. * Replaced snprintf. v4 -> v3: * Moving helper function process_device_remove() to separate commit. * Refactoring hd-geo-test to avoid code duplication. Michael Labiuk (9): tests/x86: add helper qtest_qmp_device_del_send() tests/x86: Add subtest with 'q35' machine type to device-plug-test tests/x86: Refactor hot unplug hd-geo-test tests/x86: Add 'q35' machine type to override-tests in hd-geo-test tests/x86: Add 'q35' machine type to hotplug hd-geo-test tests/x86: Fix comment typo in drive_del-test tests/x86: replace snprint() by g_strdup_printf() in drive_del-test tests/x86: Add 'q35' machine type to drive_del-test tests/x86: Add 'q35' machine type to ivshmem-test tests/qtest/device-plug-test.c | 56 ++++-- tests/qtest/drive_del-test.c | 125 +++++++++++-- tests/qtest/hd-geo-test.c | 319 ++++++++++++++++++++++++--------- tests/qtest/ivshmem-test.c | 18 ++ tests/qtest/libqos/pci-pc.c | 8 +- tests/qtest/libqtest.c | 16 +- tests/qtest/libqtest.h | 10 ++ 7 files changed, 425 insertions(+), 127 deletions(-) -- 2.34.1