Message ID | 173870406595.546134.7063206926113803976.stgit@frogsfrogsfrogs (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [01/34] generic/476: fix fsstress process management | expand |
On Tue, Feb 04, 2025 at 01:30:39PM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong <djwong@kernel.org> > > 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@kernel.org> > --- > common/config | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Makes sense. Reviewed-by: Dave Chinner <dchinner@redhat.com>
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)"