From 7e2c4b63c2f32e99a68a889f6eaf27fe972d3568 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Wed, 7 Apr 2021 17:01:37 +0200 Subject: [PATCH] ci: Update SGX test to rely on vmlinux Since using bzImage is now deprecated, let's update the SGX integration test to rely on vmlinux instead. Fixes #2476 Signed-off-by: Sebastien Boeuf --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 96045fbbf..36783a5d1 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -5835,7 +5835,7 @@ mod tests { workload_path.push("workloads"); let mut kernel_path = workload_path; - kernel_path.push("bzImage_w_sgx"); + kernel_path.push("vmlinux_w_sgx"); let mut child = GuestCommand::new(&guest) .args(&["--cpus", "boot=1"])