From 88466032bb4ec4ae9188dec308a5c3c1e38b7263 Mon Sep 17 00:00:00 2001 From: braam Date: Fri, 21 Jun 2002 05:15:03 +0000 Subject: [PATCH] fix the path problem in common.sh --- lustre/tests/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/common.sh b/lustre/tests/common.sh index 66cc53a..efe797b 100644 --- a/lustre/tests/common.sh +++ b/lustre/tests/common.sh @@ -4,7 +4,7 @@ export PATH=$PATH:/sbin:/usr/sbin [ -d /r ] && R=/r PORTALS=$SRCDIR../../portals -LUSTRE=$SRCDIR../../lustre +LUSTRE=$SRCDIR.. PTLCTL=$PORTALS/linux/utils/ptlctl DBGCTL=$PORTALS/linux/utils/debugctl @@ -28,7 +28,7 @@ do_insmod() { [ "$MODULE" ] || fail "usage: $0 " [ -f $MODULE ] || echo "$0: module '$MODULE' not found" 1>&2 lsmod | grep -q "\<$BASE\>" && return 0 - insmod $MODULE + insmod $MODULE } # Return the next unused loop device on stdout and in the $LOOPDEV -- 1.8.3.1