TDengine/tests/script/runAllSimCases.sh
2022-04-01 15:51:44 +08:00

21 lines
345 B
Bash
Executable file

#!/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