summaryrefslogtreecommitdiffstats
path: root/sim-scripts/nosim
blob: b03c125c9590da7c517f87ebadaf5f533443245f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/eval bash

case $1 in 
  *acats*)
    acatsTest=`basename $1 | tr "[:lower:]" "[:upper:]" `
    echo ==== ${acatsTest} PASSED ============================.
    ;;
  *)
    ;;
esac
echo "*** EXIT code 0"
exit 0