From: hch@infradead.org Date: Tue, 13 May 2014 05:28:37 +0000 (+1000) Subject: common: use a relative path to fsstress X-Git-Tag: v2022.05.01~3140 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7f82a5f69926873902af3d51af9ab2f1ae509107;p=users%2Fhch%2Fxfstests-dev.git common: use a relative path to fsstress All commands run as $qa_user should use a relative path so that missing access permissions on $HOME for root don't prevent running it. This fixes common/233 for me. Signed-off-by: Christoph Hellwig Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/common/config b/common/config index e8bcf485e..5d87ef591 100644 --- a/common/config +++ b/common/config @@ -134,7 +134,7 @@ export MOUNT_PROG="`set_prog_path mount`" export UMOUNT_PROG="`set_prog_path umount`" [ "$UMOUNT_PROG" = "" ] && _fatal "umount not found" -export FSSTRESS_PROG="`set_prog_path fsstress $PWD/ltp/fsstress`" +export FSSTRESS_PROG="./ltp/fsstress" [ "$FSSTRESS_PROG" = "" ] && _fatal "fsstress not found" export PERL_PROG="`set_prog_path perl`"