test-all.sh 1.4 KB
Newer Older
sangshuduo's avatar
sangshuduo 已提交
1 2 3 4 5 6 7 8 9
#!/bin/bash

# Color setting
RED='\033[0;31m'
GREEN='\033[1;32m'
GREEN_DARK='\033[0;32m'
GREEN_UNDERLINE='\033[4;32m'
NC='\033[0m'

10
echo "### run TSIM script ###"
sangshuduo's avatar
sangshuduo 已提交
11
cd script
12
./test.sh -f basicSuite.sim 2>&1 | grep 'success\|failed\|fault' | grep -v 'default' | tee out.txt
sangshuduo's avatar
sangshuduo 已提交
13

14
totalSuccess=`grep 'success' out.txt | wc -l`
15
totalBasic=`grep success out.txt | grep Suite | wc -l`
sangshuduo's avatar
sangshuduo 已提交
16

17 18
if [ "$totalSuccess" -gt "0" ]; then
  totalSuccess=`expr $totalSuccess - $totalBasic`
sangshuduo's avatar
sangshuduo 已提交
19 20
fi

21 22 23 24 25
echo -e "${GREEN} ### Total $totalSuccess TSIM case(s) succeed! ### ${NC}"

totalFailed=`grep 'failed\|fault' out.txt | wc -l`
echo -e "${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"

26
if [ "$totalFailed" -ne "0" ]; then
27
#  echo -e "${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"
28
  exit $totalFailed
sangshuduo's avatar
sangshuduo 已提交
29 30
fi

31
echo "### run Python script ###"
sangshuduo's avatar
sangshuduo 已提交
32
cd ../pytest
33 34

if [ "$1" == "cron" ]; then
35
  ./fulltest.sh > /dev/null | tee pytest-out.txt
36
else
37
  ./smoketest.sh > /dev/null | tee pytest-out.txt
38
fi
39
totalPySuccess=`grep 'successfully executed' pytest-out.txt | wc -l`
sangshuduo's avatar
sangshuduo 已提交
40

41
if [ "$totalPySuccess" -gt "0" ]; then
sangshuduo's avatar
sangshuduo 已提交
42
  grep 'successfully executed' pytest-out.txt
43
  echo -e "${GREEN} ### Total $totalPySuccess python case(s) succeed! ### ${NC}"
sangshuduo's avatar
sangshuduo 已提交
44 45
fi

sangshuduo's avatar
sangshuduo 已提交
46
totalPyFailed=`grep 'failed\|fault' pytest-out.txt | wc -l`
47 48 49
if [ "$totalPyFailed" -ne "0" ]; then
  echo -e "${RED} ### Total $totalPyFailed python case(s) failed! ### ${NC}"
  exit $totalPyFailed
sangshuduo's avatar
sangshuduo 已提交
50 51
fi