Files
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

18 lines
229 B
Bash
Executable File

#!/bin/sh
make -j 16
while true;do
rm -f *.log *.log.*
for i in `ls test*|grep -v '\.'`;do
#for i in test_ob_transaction;do
echo $i
./$i
if [ $? -ne 0 ];then
exit $?
fi
done
done
#vim transaction.log