[svn-r6692] Purpose:

feature.

Description:
Added the option of "setenv3" which sets the environment variable
that has three components like env AR="ar -X 64".  It is another
kludge like setenv2.  Got to code in a better 'setenv' option.

Platforms tested:
Copper (because its -64 compiling needs that AR set as above).
Eirene (where it usually launches).
Did not do h5committest which does not test bin/runtest.

Misc. update:
This commit is contained in:
Albert Cheng 2003-04-16 16:11:45 -05:00
parent e2d71db8b1
commit 3198f06a63

View File

@ -309,6 +309,15 @@ RUNSNAPTEST()
export $1
shift; shift
;;
setenv3)
# set environment variable with 3 values
# a kludge now--the extra single quotes are needed
# else eval complains.
shift
eval $1="'$2 $3 $4'"
export $1
shift; shift; shift
;;
skip)
# skip this test
skiptest=yes