https://github.com/pou036/redback
Raw File
Tip revision: c9591d3ccecf0e2b8288cee25ebe46ea5122ff81 authored by mlesueur on 12 January 2023, 16:15:23 UTC
#18 updated format of Actions objects
Tip revision: c9591d3
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