From: Darrick J. Wong <djwong@xxxxxxxxxx> In general we're supposed to specify full paths to fstests binaries with $here so that subtests can change the current working directory without issues. Signed-off-by: "Darrick J. Wong" <djwong@xxxxxxxxxx> --- common/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config b/common/config index 77f3fc153eb731..ae9aa3f4b0b8fc 100644 --- a/common/config +++ b/common/config @@ -128,7 +128,7 @@ export MOUNT_PROG="$(type -P mount)" export UMOUNT_PROG="$(type -P umount)" [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found" -export FSSTRESS_PROG="./ltp/fsstress" +export FSSTRESS_PROG="$here/ltp/fsstress" [ ! -x $FSSTRESS_PROG ] && _fatal "fsstress not found or executable" export PERL_PROG="$(type -P perl)"