From db102a2547a6b639c173e9c6e60a6b88294b388e Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Fri, 30 Jul 2021 01:18:45 -0400 Subject: [PATCH] tests: Enable CPU topology for AArch64 Signed-off-by: Henry Wang --- tests/integration.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index a0f48c86a..38bcc3f90 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2012,19 +2012,16 @@ mod tests { } #[test] - #[cfg(target_arch = "x86_64")] fn test_cpu_topology_421() { test_cpu_topology(4, 2, 1); } #[test] - #[cfg(target_arch = "x86_64")] fn test_cpu_topology_142() { test_cpu_topology(1, 4, 2); } #[test] - #[cfg(target_arch = "x86_64")] fn test_cpu_topology_262() { test_cpu_topology(2, 6, 2); }