mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
42d84aa44f
commit
b89fbdd877
19
bin/runtest
19
bin/runtest
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user