mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[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:
parent
e2d71db8b1
commit
3198f06a63
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user