Skip to content

Commit

Permalink
ATDM: Fix for non-hostname match systems (ATDV-228, trilinos#6276)
Browse files Browse the repository at this point in the history
There was bad logic put in to fix the last bug.  This break the EMPIRE
Trilinos testing/integration process (trilinos#6276).

This script really needs to be put under automated test (see trilinos#5939).
  • Loading branch information
bartlettroscoe authored and jeforster committed Nov 18, 2019
1 parent 131b06f commit c889daa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cmake/std/atdm/utils/get_known_system_info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ fi

#echo "hostnameMatch ='${hostnameMatch}'"

systemNameTypeMatchedList+=(${hostnameMatchSystemName})
systemNameTypeMatchedListHostNames[${hostnameMatchSystemName}]=${hostnameMatch}
if [[ "${hostnameMatch}" != "" ]] ; then
systemNameTypeMatchedList+=(${hostnameMatchSystemName})
systemNameTypeMatchedListHostNames[${hostnameMatchSystemName}]=${hostnameMatch}
fi

#
# C) Look for known system types that matches this machine
Expand Down

0 comments on commit c889daa

Please sign in to comment.