#!/bin/csh
echo "-------------------------------------------"
echo "Start running all tests with $1            "
echo "-------------------------------------------"

foreach dev (bjt504 bjt504t bjtd504 bjtd504t)

 echo "-------------------------------------------"
 date
 echo "Run all tests for $dev"
 echo "-------------------------------------------"

 cd $dev
 ./run_all_tests_$dev $1
 cd ..

end

echo "-------------------------------------------"
date
echo "Finished running all tests with $1         "
echo "-------------------------------------------"

