Skip to content
Snippets Groups Projects
Commit 0e29e9ff authored by Andreas Hamacher's avatar Andreas Hamacher
Browse files

Merge branch 'fix_mpi_test_script' into 'master'

fixed logic error in mpi test script

See merge request !364
parents 05353c17 0328883e
No related branches found
No related tags found
1 merge request!364fixed logic error in mpi test script
......@@ -42,7 +42,7 @@ while true; do
#echo "Parameter is $1"
case "$1" in
-n|--newnode) # Specify p value.
newnode=$2
hostname=$2
shift 2
#echo "Newnode is $newnode"
;;
......@@ -80,11 +80,11 @@ echo "PID is $$"
#parse arguments
parseARG $0 "$@"
echo "newnode=$newnode"
echo "hostname=$hostname"
echo "reservation=$reservation"
echo "partition=$partition"
if [ -z $newnode ]
if [ -z $hostname ]
then
echo "You need to specify a nodename "
printUsage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment