From a0746c8d7b292c258375c913aab04f7bd6c7b2f0 Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Mon, 23 Oct 2023 11:22:14 +0200 Subject: [PATCH] agent: Skip flaky create_tmpfs on s390x This is to skip a flaky test `create_tmpfs()` on s390x until a root cause is identified and fixed. Fixes: #4248 Signed-off-by: Hyounggyu Choi --- src/agent/src/watcher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/src/watcher.rs b/src/agent/src/watcher.rs index a6cf4113b4..95dfa6cba0 100644 --- a/src/agent/src/watcher.rs +++ b/src/agent/src/watcher.rs @@ -1291,7 +1291,7 @@ mod tests { #[tokio::test] #[serial] - #[cfg(not(target_arch = "aarch64"))] + #[cfg(not(any(target_arch = "aarch64", target_arch = "s390x")))] async fn create_tmpfs() { skip_if_not_root!();