Skip to content
Snippets Groups Projects
Commit 28ee074e authored by scjody's avatar scjody
Browse files

Branch HEAD

Fix ONLY variable handling

b=12499
i=brian
i=adilger
parent ddd1a152
No related branches found
No related tags found
No related merge requests found
......@@ -26,9 +26,18 @@ fi
[ "$DEBUG_ON" ] || DEBUG_ON="eval sysctl -w lnet.debug=0x33f0484"
LIBLUSTRE=${LIBLUSTRE:-../liblustre}
LIBLUSTRETESTS=${LIBLUSTRETESTS:-$LIBLUSTRE/tests}
if [ "$ACC_SM_ONLY" ]; then
export RUNTESTS="no" SANITY="no" DBENCH="no" BONNIE="no" IOZONE="no" FSX="no" SANITYN="no" LFSCK="no" LIBLUSTRE="no" REPLAY_SINGLE="no" CONF_SANITY="no" RECOVERY_SMALL="no" REPLAY_OST_SINGLE="no" REPLAY_DUAL="no" INSANITY="no" SANITY_QUOTA="no"
for O in $ACC_SM_ONLY; do
O=`echo $O | tr "[:lower:]" "[:upper:]"`
export ${O}="yes"
done
fi
STARTTIME=`date +%s`
RANTEST=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment