From 1a57347519402be88d038c81c8f615f7d927856f Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Thu, 21 May 2020 14:57:49 -0600 Subject: [PATCH] ATM-1754 tests: skip f_large_dir on aarch64 Skip the f_large_dir test on the aarch64 builders because this is extremely slow (90 minutes) and clogs up the build system when there are many patches in the queue. Signed-off-by: Andreas Dilger Change-Id: I8c3a588c34caae5332b4c643df940b0e855cab07 Reviewed-on: https://review.whamcloud.com/38693 Tested-by: jenkins Reviewed-by: Wang Shilong Reviewed-by: Li Dongyang --- tests/f_large_dir/script | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/f_large_dir/script b/tests/f_large_dir/script index 9af042c..8fc2a41 100644 --- a/tests/f_large_dir/script +++ b/tests/f_large_dir/script @@ -2,6 +2,12 @@ OUT=$test_name.log EXP=$test_dir/expect E2FSCK=../e2fsck/e2fsck +# skip this test on aarch64 builders because it is extremely slow +if [ "`uname -m`" = "aarch64" ]; then + echo "$test_name: $test_description: skipped (slow on aarch64)" + return 0 +fi + NAMELEN=255 DIRENT_SZ=8 BLOCKSZ=1024 -- 1.8.3.1