https://github.com/pou036/redback
Raw File
Tip revision: 28aec556d8d43e3471af2e96cb3cf44dee12d111 authored by mlesueur on 07 March 2024, 12:34:19 UTC
Merge pull request #200 from GiudGiud/PR_rename_tensor
Tip revision: 28aec55
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