Skip to content

Commit 7b405e8

Browse files
committed
temporarily disable assert for aarch64
For a full description, checkout Github issue 2216. Signed-off-by: Diana Popa <[email protected]>
1 parent 90246f9 commit 7b405e8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/vmm/src/signal_handler.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@ mod tests {
282282
assert!(METRICS.signals.sigxcpu.count() >= 1);
283283
assert!(METRICS.signals.sigpipe.count() >= 1);
284284
assert!(METRICS.signals.sighup.count() >= 1);
285+
// Workaround to GitHub issue 2216.
286+
#[cfg(not(target_arch = "aarch64"))]
285287
assert!(METRICS.signals.sigill.count() >= 1);
286288
}
287289
}

0 commit comments

Comments
 (0)