From patchwork Thu Nov 30 03:29:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shaoqin Huang X-Patchwork-Id: 13474043 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="ha8rW2UW" Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7ECBB10C6 for ; Wed, 29 Nov 2023 19:30:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1701315009; 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; bh=4cE4T+EEL+03WZ5UUP3AHZPRhs258nrnZLkXaC4jGAY=; b=ha8rW2UWbgo6l1qvMJYgqo5jTMAQajNS7cA4MCQsLpQ4vcelf02/skDcaLcehrtvWCcd/w s0N6sN4GH8AaB7BdS7rHQuCmQ7Q08ZnIPQFbvnaNl1+a2cy7zyRSvN4mHlJRG6XqJPU/+r CAeyH2WcwgB+h4VNUadhG8he8VV9V8A= 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-207-FwT6T1RnPsSfc7cHZW2ruQ-1; Wed, 29 Nov 2023 22:30:06 -0500 X-MC-Unique: FwT6T1RnPsSfc7cHZW2ruQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (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 720AC29AA3B8; Thu, 30 Nov 2023 03:30:05 +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 39FFD112130C; Thu, 30 Nov 2023 03:30:05 +0000 (UTC) From: Shaoqin Huang To: Andrew Jones , kvmarm@lists.linux.dev Cc: Shaoqin Huang , Alexandru Elisei , Colton Lewis , Eric Auger , kvm@vger.kernel.org, Nico Boehr , Nikos Nikoleris , Nina Schoetterl-Glausch , Ricardo Koller , Sean Christopherson , Thomas Huth Subject: [kvm-unit-tests PATCH v2 0/3] arm64: runtime scripts improvements on efi Date: Wed, 29 Nov 2023 22:29:37 -0500 Message-Id: <20231130032940.2729006-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.3 When I run the arm64 tests on efi, I found several runtime scripts issues. This patch series try to fix all the issues. The first patch add a missing error reporting. The second patch skip the migration tests when run on efi since it will always fail. The thrid patch fix the issue when parallel running tests on efi. Changelog: ---------- v1->v2: - Add the fixes tag in patch-1. - Change the $last_line to embedeed format in patch-1. - Move the check EFI into the check for migration, which decrease one check in patch-2. - Add more detailed comments about how tests fail in patch-3. v1: https://lore.kernel.org/all/20231129032123.2658343-1-shahuang@redhat.com/ Shaoqin Huang (3): runtime: Fix the missing last_line runtime: arm64: Skip the migration tests when run on EFI arm64: efi: Make running tests on EFI can be parallel arm/efi/run | 16 +++++++++------- scripts/runtime.bash | 6 +++++- 2 files changed, 14 insertions(+), 8 deletions(-)