2011-06-26 14:06:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2011-07-11 09:40:23 +00:00
|
|
|
# Copyright 2011 George Danchev <danchev@spnet.net>
|
2011-07-15 06:05:57 +00:00
|
|
|
# Licensed under GNU GPL version 2 or later
|
2011-07-11 09:40:23 +00:00
|
|
|
|
2011-06-26 14:06:38 +00:00
|
|
|
set -e
|
|
|
|
|
2011-07-17 13:38:52 +00:00
|
|
|
SELF=$(basename "$0")
|
|
|
|
GEN_DATA_DIR=releng_generated_data
|
|
|
|
CLOG=${GEN_DATA_DIR}/log.${SELF}
|
|
|
|
PASSED_OPTIONS="$@"
|
|
|
|
RELENG_XORRISO=
|
|
|
|
CLEANUP_LOG=0
|
|
|
|
|
2011-07-13 11:24:32 +00:00
|
|
|
not_in_releng_exit() {
|
|
|
|
printf "\nPlease execute the tests from releng directory.\n\n"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2011-07-17 13:38:52 +00:00
|
|
|
# To catch the exit value of a command in a pipe
|
|
|
|
return_value_file="$GEN_DATA_DIR"/run_all_"$$"_return_value
|
|
|
|
return_wrapper()
|
|
|
|
{
|
|
|
|
cmd="$1"
|
|
|
|
shift 1
|
|
|
|
"$cmd" "$@"
|
|
|
|
RET="$?"
|
|
|
|
echo "$RET" >"$return_value_file"
|
|
|
|
return "$RET"
|
|
|
|
}
|
|
|
|
|
2011-07-17 13:08:52 +00:00
|
|
|
# Using only bash builtin commands.
|
|
|
|
# On 4 year old amd64 x2 3000 MHz, xterm local,it counts 22471 lines per second
|
|
|
|
# On 2 year old amd64 x4 2600 MHz, ssh remote, it counts 35348 lines per second
|
|
|
|
count_lines()
|
|
|
|
{
|
|
|
|
# $1 if not empty: start count
|
|
|
|
line=
|
|
|
|
if test -n "$1"
|
|
|
|
then
|
|
|
|
count="$1"
|
|
|
|
else
|
|
|
|
count=0
|
|
|
|
fi
|
|
|
|
while read line
|
|
|
|
do
|
|
|
|
count=$(($count + 1))
|
|
|
|
printf "\r %4d lines logged ... " "$count" >&2
|
|
|
|
printf "%s\n" "$line"
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-07-08 14:18:54 +00:00
|
|
|
# It is not a good idea to include inc/releng_getopts.inc with the
|
|
|
|
# master script as it calls the subordinate scripts and they include
|
|
|
|
# this file too, and we want to avoid sharing variable with subshells
|
2011-07-13 11:24:32 +00:00
|
|
|
if [ ! -f inc/releng_getopts.inc ]; then
|
|
|
|
not_in_releng_exit
|
|
|
|
fi
|
2011-07-08 14:18:54 +00:00
|
|
|
|
|
|
|
#############################################
|
2011-07-15 17:57:05 +00:00
|
|
|
next_is=
|
|
|
|
for i in "$@"
|
2011-07-08 14:18:54 +00:00
|
|
|
do
|
2011-07-15 17:57:05 +00:00
|
|
|
if test "$next_is" = "ignore"
|
2011-07-17 13:38:52 +00:00
|
|
|
then :
|
2011-07-15 17:57:05 +00:00
|
|
|
elif test "$next_is" = "x"
|
|
|
|
then
|
|
|
|
RELENG_XORRISO="$i"
|
|
|
|
next_is=
|
|
|
|
elif test x"$i" = x"-x"
|
|
|
|
then
|
|
|
|
next_is="x"
|
|
|
|
elif test x"$i" = x"-c"
|
|
|
|
then
|
|
|
|
CLEANUP_LOG=1
|
|
|
|
fi
|
2011-07-08 14:18:54 +00:00
|
|
|
done
|
2011-07-15 17:57:05 +00:00
|
|
|
#############################################
|
2011-07-15 18:33:10 +00:00
|
|
|
if test "$next_is" = x
|
|
|
|
then
|
|
|
|
echo >&2
|
|
|
|
echo "Option -x expects an argument (the path to the xorriso program)" >&2
|
|
|
|
exit 31
|
|
|
|
fi
|
2011-06-27 15:36:56 +00:00
|
|
|
|
2011-07-08 14:18:54 +00:00
|
|
|
if [ ! "${1}" ]; then
|
2011-06-27 15:36:56 +00:00
|
|
|
cat << HLP
|
2011-07-09 07:33:33 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
${SELF} runs executables from CWD starting
|
|
|
|
with releng_*, passing them its own options.
|
|
|
|
stdout/stderr output stored in:
|
|
|
|
${CLOG}
|
2011-07-17 16:20:58 +00:00
|
|
|
|
2011-07-09 07:33:33 +00:00
|
|
|
examples:
|
2011-07-15 18:26:02 +00:00
|
|
|
# run xorriso and keep the self-generated data
|
2011-07-15 17:57:05 +00:00
|
|
|
$ ./${SELF} -x path/to/xorriso [-k]
|
2011-06-28 15:17:28 +00:00
|
|
|
|
2011-07-15 18:26:02 +00:00
|
|
|
# clean up self-generated data from previous run
|
2011-07-15 17:57:05 +00:00
|
|
|
$ ./${SELF} -c
|
2011-07-09 07:33:33 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2011-06-27 15:36:56 +00:00
|
|
|
HLP
|
2011-07-08 14:18:54 +00:00
|
|
|
exit 31
|
2011-06-27 15:36:56 +00:00
|
|
|
fi
|
|
|
|
|
2011-06-28 17:55:09 +00:00
|
|
|
########################################################
|
2011-07-04 14:58:53 +00:00
|
|
|
if [ -f "${CLOG}" ]; then
|
|
|
|
mv "${CLOG}" "${CLOG}".prev
|
|
|
|
fi
|
2011-07-02 17:55:04 +00:00
|
|
|
> ${CLOG}
|
2011-07-09 09:49:10 +00:00
|
|
|
if [ -x "${RELENG_XORRISO}" ]; then
|
|
|
|
echo -e "_OVERVIEW_______________________________________________________________" >> ${CLOG}
|
2011-07-10 06:48:56 +00:00
|
|
|
date --utc >> ${CLOG}
|
2011-07-09 09:49:10 +00:00
|
|
|
${RELENG_XORRISO} --version >> ${CLOG}
|
|
|
|
echo -e "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" >> ${CLOG}
|
|
|
|
fi
|
2011-06-27 19:23:14 +00:00
|
|
|
DSTART=`date --utc`
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -ne "${SELF}: Started at ${DSTART}" | tee -a ${CLOG}
|
2011-06-27 19:23:14 +00:00
|
|
|
E1=`date '+%s'`
|
2011-07-06 07:02:55 +00:00
|
|
|
# require ^releng_, avoid running (your)self explicitly
|
2011-06-27 19:23:14 +00:00
|
|
|
for s in `ls | grep ^releng_ | grep -v ${SELF} | sort -n`; do
|
|
|
|
if [ -x ${s} -a ! -d ${s} ]; then
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -ne "\n\n_STARTING_TEST_________________________________________________________" >> ${CLOG}
|
2011-07-17 13:08:52 +00:00
|
|
|
echo -ne "\n${SELF}: Running ./${s} ${PASSED_OPTIONS} :\n" \
|
|
|
|
| tee -a ${CLOG}
|
2011-06-27 19:23:14 +00:00
|
|
|
T1=`date '+%s'`
|
|
|
|
set +e
|
2011-07-17 13:38:52 +00:00
|
|
|
|
2011-07-17 14:37:54 +00:00
|
|
|
if test -n "$PIPESTATUS"
|
|
|
|
then
|
|
|
|
# PIPESTATUS[0] should be available in bash
|
|
|
|
./${s} ${PASSED_OPTIONS} 2>&1 | count_lines >> ${CLOG}
|
|
|
|
RET="${PIPESTATUS[0]}"
|
|
|
|
else
|
|
|
|
# a more portable method which uses a temporary file to record exit value
|
|
|
|
return_wrapper ./${s} ${PASSED_OPTIONS} 2>&1 | count_lines >> ${CLOG}
|
|
|
|
RET=$(cat "$return_value_file")
|
|
|
|
rm "$return_value_file"
|
|
|
|
fi
|
2011-07-17 13:38:52 +00:00
|
|
|
# echo "RET='$RET'" >/dev/tty
|
|
|
|
|
2011-06-27 19:23:14 +00:00
|
|
|
T2=`date '+%s'`
|
2011-06-28 17:55:09 +00:00
|
|
|
let TS="${T2} - ${T1}"
|
2011-06-27 19:23:14 +00:00
|
|
|
case ${RET} in
|
|
|
|
0)
|
|
|
|
printf "done in ${TS} sec. ok."
|
|
|
|
;;
|
|
|
|
*)
|
2011-07-09 18:00:05 +00:00
|
|
|
printf "done in ${TS} sec. "
|
|
|
|
which tput >/dev/null 2>&1 && tput smso
|
|
|
|
printf "FAIL -> EXIT CODE $RET"
|
|
|
|
which tput >/dev/null 2>&1 && tput rmso
|
2011-06-27 19:23:14 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
set -e
|
|
|
|
fi
|
|
|
|
done
|
2011-06-26 15:16:10 +00:00
|
|
|
|
2011-06-27 19:23:14 +00:00
|
|
|
DEND=`date --utc`
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -ne "\n${SELF}: Stopped at ${DEND}." | tee -a ${CLOG}
|
2011-07-08 14:18:54 +00:00
|
|
|
if [ "${CLEANUP_LOG}" -eq 1 ]; then
|
|
|
|
if [ -f "${CLOG}" ]; then
|
|
|
|
rm -f "${CLOG}"
|
2011-07-11 08:31:03 +00:00
|
|
|
echo -ne "\n${SELF}: Removed my own log ${CLOG}." # | tee -a ${CLOG}
|
2011-07-08 14:18:54 +00:00
|
|
|
fi
|
|
|
|
if [ -f "${CLOG}".prev ]; then
|
2011-07-10 06:48:56 +00:00
|
|
|
rm -f "${CLOG}".prev
|
2011-07-11 08:31:03 +00:00
|
|
|
echo -e "\n${SELF}: Removed my own log ${CLOG}.prev." # | tee -a ${CLOG}
|
2011-07-08 14:18:54 +00:00
|
|
|
fi
|
2011-06-28 17:55:09 +00:00
|
|
|
else
|
2011-07-04 16:05:24 +00:00
|
|
|
E2=`date '+%s'`
|
2011-07-09 07:33:33 +00:00
|
|
|
if [ ${E2} -eq ${E1} ]; then
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e " Total elapsed 0 sec." | tee -a ${CLOG}
|
2011-07-09 07:33:33 +00:00
|
|
|
else
|
|
|
|
let ES="${E2} - ${E1}"
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e " Total elapsed ${ES} sec." | tee -a ${CLOG}
|
2011-07-09 07:33:33 +00:00
|
|
|
fi
|
2011-07-04 16:05:24 +00:00
|
|
|
#####
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e "\n_SUMMARY________________________________________________________________" >> ${CLOG}
|
|
|
|
echo -e "${SELF}: Trivial log examination: ${CLOG}" | tee -a ${CLOG}
|
|
|
|
echo -e "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a ${CLOG}
|
2011-07-04 16:05:24 +00:00
|
|
|
# severity classes of libdax_msgs.h in libburn and libisofs
|
|
|
|
# List of boring keywords:
|
|
|
|
# 'UPDATE' A pacifier message during long running operations.
|
|
|
|
# List of interesting keywords:
|
2011-07-05 12:07:32 +00:00
|
|
|
# thrown by xorriso and underlying libraries
|
|
|
|
LIST_KWD="(NEVER|ABORT|FATAL|FAILURE|MISHAP|SORRY|WARNING|HINT|NOTE|DEBUG|ALL"
|
|
|
|
# thrown by others
|
2011-07-07 14:28:32 +00:00
|
|
|
LIST_KWD+="|FAIL|ERROR|WRONG)"
|
2011-07-04 16:05:24 +00:00
|
|
|
|
|
|
|
if [ -f "${CLOG}" ]; then
|
2011-07-04 17:16:47 +00:00
|
|
|
set +e
|
|
|
|
# lines, perl regex, leading tabs
|
2011-07-17 16:51:22 +00:00
|
|
|
grep -n -P "${LIST_KWD}" "${CLOG}" | tee -a ${CLOG}
|
2011-07-04 17:16:47 +00:00
|
|
|
RET_GREP="$?"
|
|
|
|
case ${RET_GREP} in
|
|
|
|
0) # found
|
|
|
|
;;
|
|
|
|
1) # not found
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e "\n${SELF}: Log file looks clear.\n" | tee -a ${CLOG}
|
2011-07-04 17:16:47 +00:00
|
|
|
;;
|
|
|
|
*) #
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e "\n${SELF}: grep returned EXIT CODE: ${RET_GREP}.\n" | tee -a ${CLOG}
|
2011-07-04 17:16:47 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
set -e
|
2011-07-04 16:05:24 +00:00
|
|
|
fi
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a ${CLOG}
|
2011-07-05 05:45:48 +00:00
|
|
|
|
|
|
|
##### TODO: work out a less noisy diff'ing technique!
|
|
|
|
if [ -f "${CLOG}".prev -a -f "${CLOG}" ]; then
|
2011-07-10 06:48:56 +00:00
|
|
|
echo -e "${SELF}: See diff against previous log file (might be long):" | tee -a ${CLOG}
|
|
|
|
echo -e "diff -Naur ${CLOG}.prev ${CLOG} | less" | tee -a ${CLOG}
|
2011-07-05 05:45:48 +00:00
|
|
|
fi
|
2011-07-11 08:31:03 +00:00
|
|
|
|
2011-06-28 17:55:09 +00:00
|
|
|
fi
|
2011-07-09 07:33:33 +00:00
|
|
|
|
|
|
|
#
|
2011-07-09 18:00:05 +00:00
|
|
|
which tput >/dev/null 2>&1 && tput smso
|
2011-07-11 08:31:03 +00:00
|
|
|
echo -e "\n${SELF}: Leaving the following cruft in ${GEN_DATA_DIR}:" # | tee -a ${CLOG}
|
2011-07-09 18:00:05 +00:00
|
|
|
which tput >/dev/null 2>&1 && tput rmso
|
2011-07-11 08:31:03 +00:00
|
|
|
ls -lth "${GEN_DATA_DIR}" # | tee -a ${CLOG}
|
2011-06-26 15:16:10 +00:00
|
|
|
|
2011-07-08 14:18:54 +00:00
|
|
|
# Fin
|
2011-06-27 19:23:14 +00:00
|
|
|
exit 0
|