mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* fix: windows sim test * fix: windows sim test * fix: random on windows * fix: taosd online check * fix: windows path in python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: windows python test * fix: make_install.bat * fix: python test * fix: jdbc test * fix: develop test * fix: develop test * fix:add log * test:add win case file * test:add win case file * test:add win case file * fix: python test get taosBenchmark path * test:add win case file * test:comment some failed cases in win * test:add win case file * test:add win case file * test:comment some win case file * test:add some win case file --------- Co-authored-by: wangmm0220 <wangmm0220@gmail.com> Co-authored-by: chenhaoran <haoran920c@163.com>
22 lines
No EOL
776 B
Bash
22 lines
No EOL
776 B
Bash
#!/bin/bash
|
|
|
|
pgrep taosd || taosd >> /dev/null 2>&1 &
|
|
pgrep taosadapter || taosadapter >> /dev/null 2>&1 &
|
|
cd ../../docs/examples/java
|
|
|
|
mvn clean test > jdbc-out.log 2>&1
|
|
tail -n 20 jdbc-out.log
|
|
totalJDBCCases=`grep 'Tests run' jdbc-out.log | awk -F"[:,]" 'END{ print $2 }'`
|
|
failed=`grep 'Tests run' jdbc-out.log | awk -F"[:,]" 'END{ print $4 }'`
|
|
error=`grep 'Tests run' jdbc-out.log | awk -F"[:,]" 'END{ print $6 }'`
|
|
totalJDBCFailed=`expr $failed + $error`
|
|
totalJDBCSuccess=`expr $totalJDBCCases - $totalJDBCFailed`
|
|
|
|
if [ "$totalJDBCSuccess" -gt "0" ]; then
|
|
echo -e "\n${GREEN} ### Total $totalJDBCSuccess JDBC case(s) succeed! ### ${NC}"
|
|
fi
|
|
|
|
if [ "$totalJDBCFailed" -ne "0" ]; then
|
|
echo -e "\n${RED} ### Total $totalJDBCFailed JDBC case(s) failed! ### ${NC}"
|
|
exit 8
|
|
fi |