runAllSimCases.sh 345 字节
Newer Older
P
plum-lihui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/bin/bash

##################################################
# 
# Do simulation test 
#
##################################################

set -e
#set -x

while read line
do
  firstChar=`echo ${line:0:1}`
  if [[ -n "$line" ]]  && [[ $firstChar != "#" ]]; then
    echo "======== $line ========"
    $line 
  fi
done < ./jenkins/basic.txt