From bc2b2c495a8cf5c094f3ddedeffafa5d7b66ad8f Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Sun, 18 Jan 2009 19:29:38 -0600 Subject: [PATCH] Don't run test 197 on 64-bit machines If it always passes on 64 bits, this gives a false sense of security. Make it obvious. Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig --- 197 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/197 b/197 index 4c81941f..f77bfa21 100644 --- a/197 +++ b/197 @@ -37,6 +37,10 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 _supported_fs xfs _supported_os Linux +bitsperlong=`src/feature -w` +if [ "$bitsperlong" -ne 32 ]; then + _notrun "This test is only valid on 32 bit machines" +fi mkdir $TEST_DIR/ttt for n in {1..168}; do -- 2.47.3