X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1512ab28169826581aaa6755fbc04eb265e5657f..ad16e5cd7126fe5cc18b3f5898b6489e54210f4c:/src/smpi/smpirun.in diff --git a/src/smpi/smpirun.in b/src/smpi/smpirun.in index 7f1407b70c..e151fb37ae 100755 --- a/src/smpi/smpirun.in +++ b/src/smpi/smpirun.in @@ -79,7 +79,7 @@ while true; do "-platform") PLATFORM="$2" if [ ! -f "${PLATFORM}" ]; then - echo "[$0] ** error: the file '${PLATFORM}' does not exist. Aborting." + echo "[`basename $0`] ** error: the file '${PLATFORM}' does not exist. Aborting." exit 1 fi shift 2 @@ -87,7 +87,7 @@ while true; do "-hostfile") HOSTFILE="$2" if [ ! -f "${HOSTFILE}" ]; then - echo "[$0] ** error: the file '${HOSTFILE}' does not exist. Aborting." + echo "[`basename $0`] ** error: the file '${HOSTFILE}' does not exist. Aborting." exit 1 fi shift 2 @@ -96,7 +96,7 @@ while true; do "-machinefile") HOSTFILE="$2" if [ ! -f "${HOSTFILE}" ]; then - echo "[$0] ** error: the file '${HOSTFILE}' does not exist. Aborting." + echo "[`basename $0`] ** error: the file '${HOSTFILE}' does not exist. Aborting." exit 1 fi shift 2 @@ -169,7 +169,7 @@ while true; do ;; "-version" | "--version" | "-v") - echo -e $SIMGRID_VERSION + printf '%b\n' "$SIMGRID_VERSION" exit 0 ;; @@ -244,6 +244,10 @@ fi # Don't use wc -l to compute it to avoid issues with trailing \n at EOF hostfile_procs=`grep -c "[a-zA-Z0-9]" $HOSTFILE` +if [ ${hostfile_procs} = 0 ] ; then + echo "[`basename $0`] ** error: the hostfile '${HOSTFILE}' is empty. Aborting." >&2 + exit 1 +fi if [ -z "${NUMPROCS}" ] ; then # Use the amount of processes in the hostfile as default value for the -np parameter