[svn-r7425] Purpose:

new feature

Description:
Added a new option of "setenvN" which does
  set environment variable with $1 values
  e.g., setenvN 3 x a b c is same as setenv x="a b c".

Platforms tested:
No h5committest.  Tested by hand in copper.

Misc. update:
This commit is contained in:
Albert Cheng 2003-08-27 23:41:11 -05:00
parent 42d84aa44f
commit b89fbdd877

View File

@ -324,6 +324,25 @@ RUNSNAPTEST()
export $1
shift; shift; shift
;;
setenvN)
# set environment variable with $1 values
# e.g., setenvN 3 x a b c is same as setenv x="a b c".
# a kludge now--the extra single quotes are needed
# else eval complains.
shift
envN=$1
shift
envname=$1
envalue=
while test $envN -gt 0; do
shift
envalue="$envalue $1"
envN=`expr $envN - 1`
done
eval $envname="'$envalue'"
export $envname
export
;;
skip)
# skip this test
skiptest=yes