From patchwork Tue Jan 16 06:58:45 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shaoqin Huang X-Patchwork-Id: 13520496 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 992A010A1F for ; Tue, 16 Jan 2024 06:58:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="eEqHcj0x" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1705388332; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=HlK+W/3Y6hR8zU8dV/B+PirvVRSMRiHzK52ecqQW9NI=; b=eEqHcj0xXNC7474SkoKI6iZukee2QRxqN+3jspPewkg91RzR+bHabGz7WTiBz9mYnskHxt Z1RNKtxi+3HSGV1aEw/wmB3AtM7K1kTLKC1zkfQzm2rfGIWPLP68cnR1VOODmjYBVNPUUU 7jhEFNsJvRCtly/v2JIs0+t9keZYTeI= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-26-1ekKJL4NPNGLoRnWJ1x7sA-1; Tue, 16 Jan 2024 01:58:49 -0500 X-MC-Unique: 1ekKJL4NPNGLoRnWJ1x7sA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 798B63C025C1; Tue, 16 Jan 2024 06:58:48 +0000 (UTC) Received: from virt-mtcollins-01.lab.eng.rdu2.redhat.com (virt-mtcollins-01.lab.eng.rdu2.redhat.com [10.8.1.196]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6E3D13C25; Tue, 16 Jan 2024 06:58:48 +0000 (UTC) From: Shaoqin Huang To: Andrew Jones , kvmarm@lists.linux.dev Cc: Shaoqin Huang , Nico Boehr , Thomas Huth , Nikos Nikoleris , Sean Christopherson , Nina Schoetterl-Glausch , Colton Lewis , kvm@vger.kernel.org Subject: [kvm-unit-tests PATCH v3 2/3] runtime: Skip the migration tests when run on EFI Date: Tue, 16 Jan 2024 01:58:45 -0500 Message-Id: <20240116065847.71623-3-shahuang@redhat.com> In-Reply-To: <20240116065847.71623-1-shahuang@redhat.com> References: <20240116065847.71623-1-shahuang@redhat.com> Precedence: bulk X-Mailing-List: kvm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.1 When running the migration tests on EFI, the migration will always fail since the efi/run use the vvfat format to run test, but the vvfat format does not support live migration. So those migration tests will always fail. Instead of waiting for fail everytime when run migration tests on EFI, skip those tests if running on EFI. Signed-off-by: Shaoqin Huang --- scripts/runtime.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/runtime.bash b/scripts/runtime.bash index c73fb024..7deb047c 100644 --- a/scripts/runtime.bash +++ b/scripts/runtime.bash @@ -156,6 +156,10 @@ function run() cmdline=$(get_cmdline $kernel) if find_word "migration" "$groups"; then + if [ "${CONFIG_EFI}" == "y" ]; then + print_result "SKIP" $testname "" "migration tests are not supported with efi" + return 2 + fi cmdline="MIGRATION=yes $cmdline" fi if find_word "panic" "$groups"; then