From 7f82a5f69926873902af3d51af9ab2f1ae509107 Mon Sep 17 00:00:00 2001 From: "hch@infradead.org" Date: Tue, 13 May 2014 15:28:37 +1000 Subject: [PATCH] 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 --- common/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config b/common/config index e8bcf485..5d87ef59 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`" -- 2.39.5