https://github.com/pou036/redback
Raw File
Tip revision: 92cc8a75aabe50b2ae46d2e45f03977b6faeedec authored by Manolis Veveakis on 14 June 2016, 14:55:10 UTC
added flags for quasi static formulation
Tip revision: 92cc8a7
run_tests
#!/bin/bash

APPLICATION_NAME=redback
# If $METHOD is not set, use opt
if [ -z $METHOD ]; then
  export METHOD=opt
fi

if [ -e ./unit/$APPLICATION_NAME-unit-$METHOD ]
then
  ./unit/$APPLICATION_NAME-unit-$METHOD
elif [ -e ./$APPLICATION_NAME-unit-$METHOD ]
then
  ./$APPLICATION_NAME-unit-$METHOD
else
  echo "Executable missing!"
  exit 1
fi
back to top