From 4aed871a59c447aea0a23131e375adc4068612ad Mon Sep 17 00:00:00 2001 From: plum-lihui Date: Fri, 1 Apr 2022 15:51:44 +0800 Subject: [PATCH] [add tools] --- tests/script/runAllSimCases.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 tests/script/runAllSimCases.sh diff --git a/tests/script/runAllSimCases.sh b/tests/script/runAllSimCases.sh new file mode 100755 index 0000000000..e1eea1cc38 --- /dev/null +++ b/tests/script/runAllSimCases.sh @@ -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 + +