Skip to content
Snippets Groups Projects
Commit ccbb25c3 authored by Markus Blatt's avatar Markus Blatt
Browse files

As hierarchytest is an MPI Programm it needs a runfile to start

lamboot if necessary.

[[Imported from SVN: r295]]
parent 56679d59
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# $Id$
# run lamboot if possible
if which lamboot; then
lamboot 2>&1 > /dev/null
fi
# start test and abort on fail
set -e
mpirun -np 1 hierarchytest
set +e
# possibly stop LAM again
if which lamhalt; then
lamhalt 2>&1 > /dev/null
fi
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