From 43643a57fb2d3368fbacd181a8cd713102d52a1a Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 3 Apr 2026 11:20:06 -0400 Subject: [PATCH] tests/f_opt_extent: use tune2fs from the build tree in the test script There may not be tune2fs installed as a system binary, so use the tune2fs from the build tree to provide hermetic testing. Signed-off-by: Theodore Ts'o --- tests/f_opt_extent/script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/f_opt_extent/script b/tests/f_opt_extent/script index 670bdb9eb..cb94f221a 100644 --- a/tests/f_opt_extent/script +++ b/tests/f_opt_extent/script @@ -23,7 +23,7 @@ echo "tune2fs metadata_csum test" > $OUT MKE2FS_CONFIG=$CONF $MKE2FS -F -T ext4h -o Linux $TMPFILE 524288 >> $OUT 2>&1 rm -f $CONF -tune2fs -O dir_index $TMPFILE >> $OUT 2>&1 +$TUNE2FS -O dir_index $TMPFILE >> $OUT 2>&1 # dump and check $DUMPE2FS $TMPFILE 2> /dev/null | grep '^Group 0:' -B99 -A20 | sed -f $cmd_dir/filter.sed > $OUT.before -- 2.47.3