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

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