From aafd3615509282a6cf1296782c7a5b25b5e94278 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 24 Dec 2013 22:44:14 -0500 Subject: [PATCH] tests: use the in-tree binaries in the test f_extent_oobounds Fix the f_extent_oobounds test so that it uses binaries built in the tree, instead of the binaries in the system PATH (which might not exist in a chroot environment) when creating the test image. Signed-off-by: "Theodore Ts'o" --- tests/f_extent_oobounds/script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/f_extent_oobounds/script b/tests/f_extent_oobounds/script index 31ac6c9..b00b031 100644 --- a/tests/f_extent_oobounds/script +++ b/tests/f_extent_oobounds/script @@ -4,8 +4,8 @@ SKIP_GUNZIP="true" TEST_DATA="$test_name.tmp" dd if=/dev/zero of=$TMPFILE bs=1k count=256 > /dev/null 2>&1 -mke2fs -Ft ext4 $TMPFILE > /dev/null 2>&1 -debugfs -w $TMPFILE << EOF > /dev/null 2>&1 +$MKE2FS -Ft ext4 $TMPFILE > /dev/null 2>&1 +$DEBUGFS -w $TMPFILE << EOF > /dev/null 2>&1 write /dev/null testfile extent_open testfile insert_node 0 15 100 -- 1.8.3.1