From 5a3ea3905f1832441c40d1a983ba85245d1a9fca Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 29 Jul 2021 10:31:53 -0400 Subject: tests: force test file systems to be built for the Linux OS This is needed to fix a large number of test failures on GNU Hurd. Also skip a number of tests that require creating very large test file systems,since Hurd does not support files greater than 4GB. Signed-off-by: Theodore Ts'o --- tests/r_ext4_big_expand/script | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/r_ext4_big_expand/script') diff --git a/tests/r_ext4_big_expand/script b/tests/r_ext4_big_expand/script index c081d447..a49e4c3a 100644 --- a/tests/r_ext4_big_expand/script +++ b/tests/r_ext4_big_expand/script @@ -10,9 +10,10 @@ SIZE_2=2T LOG=$test_name.log E2FSCK=../e2fsck/e2fsck -if [ $(uname -s) = "FreeBSD" ]; then +os=$(uname -s) +if [ "$os" = "Darwin" -o "$os" = "GNU" -o "FreeBSD" ]; then # creates a 2TB filesystem - echo "$test_name: $DESCRIPTION: skipped for FreeBSD" + echo "$test_name: $test_description: skipped for FreeBSD" return 0 fi -- cgit v1.2.3