Fixed regression tests for HYPRE_DEVELOP variables

This commit is contained in:
Rob Falgout 2021-09-20 20:26:42 -07:00
parent 408f361bd0
commit 3207e12fe9
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ if [ -d ../../../.git ]; then
DEVSTRING=`git describe --match 'v*' --long --abbrev=9`
DEVNUMBER=`echo $DEVSTRING | awk -F- '{print $2}'`
DEVBRANCH=`git rev-parse --abbrev-ref HEAD`
if [ -n "$DEVBRANCH" ]; then
if [ "$DEVBRANCH" != "master" ]; then
echo "Using HYPRE_DEVELOP_STRING: $DEVSTRING (not main development branch)" \
> ${TNAME}.testdatacheck
else

View File

@ -16,7 +16,7 @@ if [ -d ../../../.git ]; then
DEVSTRING=`git describe --match 'v*' --long --abbrev=9`
DEVNUMBER=`echo $DEVSTRING | awk -F- '{print $2}'`
DEVBRANCH=`git rev-parse --abbrev-ref HEAD`
if [ -n "$DEVBRANCH" ]; then
if [ "$DEVBRANCH" != "master" ]; then
echo "Using HYPRE_DEVELOP_STRING: $DEVSTRING (not main development branch)" \
> ${TNAME}.testdatacheck
else

View File

@ -16,7 +16,7 @@ if [ -d ../../../.git ]; then
DEVSTRING=`git describe --match 'v*' --long --abbrev=9`
DEVNUMBER=`echo $DEVSTRING | awk -F- '{print $2}'`
DEVBRANCH=`git rev-parse --abbrev-ref HEAD`
if [ -n "$DEVBRANCH" ]; then
if [ "$DEVBRANCH" != "master" ]; then
echo "Using HYPRE_DEVELOP_STRING: $DEVSTRING (not main development branch)" \
> ${TNAME}.testdatacheck
else