mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
6386c55cee
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
12 lines
234 B
Bash
Executable file
12 lines
234 B
Bash
Executable file
#!/bin/sh
|
|
|
|
f=`find result -name 'log.out' | xargs grep "NDBT_ProgramExit: " | grep -c "Failed"`
|
|
o=`find result -name 'log.out' | xargs grep "NDBT_ProgramExit: " | grep -c "OK"`
|
|
|
|
if [ $o -gt 0 -a $f -eq 0 ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1
|
|
|