[add tools]

This commit is contained in:
plum-lihui 2022-04-01 15:51:44 +08:00
parent 02f26d145f
commit 4aed871a59
1 changed files with 21 additions and 0 deletions

21
tests/script/runAllSimCases.sh Executable file
View File

@ -0,0 +1,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