Blame test-driver

Packit 030a23
#! /bin/sh
Packit 030a23
# test-driver - basic testsuite driver script.
Packit 030a23
Packit 030a23
scriptversion=2013-07-13.22; # UTC
Packit 030a23
Packit 030a23
# Copyright (C) 2011-2014 Free Software Foundation, Inc.
Packit 030a23
#
Packit 030a23
# This program is free software; you can redistribute it and/or modify
Packit 030a23
# it under the terms of the GNU General Public License as published by
Packit 030a23
# the Free Software Foundation; either version 2, or (at your option)
Packit 030a23
# any later version.
Packit 030a23
#
Packit 030a23
# This program is distributed in the hope that it will be useful,
Packit 030a23
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 030a23
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 030a23
# GNU General Public License for more details.
Packit 030a23
#
Packit 030a23
# You should have received a copy of the GNU General Public License
Packit 030a23
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 030a23
Packit 030a23
# As a special exception to the GNU General Public License, if you
Packit 030a23
# distribute this file as part of a program that contains a
Packit 030a23
# configuration script generated by Autoconf, you may include it under
Packit 030a23
# the same distribution terms that you use for the rest of that program.
Packit 030a23
Packit 030a23
# This file is maintained in Automake, please report
Packit 030a23
# bugs to <bug-automake@gnu.org> or send patches to
Packit 030a23
# <automake-patches@gnu.org>.
Packit 030a23
Packit 030a23
# Make unconditional expansion of undefined variables an error.  This
Packit 030a23
# helps a lot in preventing typo-related bugs.
Packit 030a23
set -u
Packit 030a23
Packit 030a23
usage_error ()
Packit 030a23
{
Packit 030a23
  echo "$0: $*" >&2
Packit 030a23
  print_usage >&2
Packit 030a23
  exit 2
Packit 030a23
}
Packit 030a23
Packit 030a23
print_usage ()
Packit 030a23
{
Packit 030a23
  cat <
Packit 030a23
Usage:
Packit 030a23
  test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
Packit 030a23
              [--expect-failure={yes|no}] [--color-tests={yes|no}]
Packit 030a23
              [--enable-hard-errors={yes|no}] [--]
Packit 030a23
              TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS]
Packit 030a23
The '--test-name', '--log-file' and '--trs-file' options are mandatory.
Packit 030a23
END
Packit 030a23
}
Packit 030a23
Packit 030a23
test_name= # Used for reporting.
Packit 030a23
log_file=  # Where to save the output of the test script.
Packit 030a23
trs_file=  # Where to save the metadata of the test run.
Packit 030a23
expect_failure=no
Packit 030a23
color_tests=no
Packit 030a23
enable_hard_errors=yes
Packit 030a23
while test $# -gt 0; do
Packit 030a23
  case $1 in
Packit 030a23
  --help) print_usage; exit $?;;
Packit 030a23
  --version) echo "test-driver $scriptversion"; exit $?;;
Packit 030a23
  --test-name) test_name=$2; shift;;
Packit 030a23
  --log-file) log_file=$2; shift;;
Packit 030a23
  --trs-file) trs_file=$2; shift;;
Packit 030a23
  --color-tests) color_tests=$2; shift;;
Packit 030a23
  --expect-failure) expect_failure=$2; shift;;
Packit 030a23
  --enable-hard-errors) enable_hard_errors=$2; shift;;
Packit 030a23
  --) shift; break;;
Packit 030a23
  -*) usage_error "invalid option: '$1'";;
Packit 030a23
   *) break;;
Packit 030a23
  esac
Packit 030a23
  shift
Packit 030a23
done
Packit 030a23
Packit 030a23
missing_opts=
Packit 030a23
test x"$test_name" = x && missing_opts="$missing_opts --test-name"
Packit 030a23
test x"$log_file"  = x && missing_opts="$missing_opts --log-file"
Packit 030a23
test x"$trs_file"  = x && missing_opts="$missing_opts --trs-file"
Packit 030a23
if test x"$missing_opts" != x; then
Packit 030a23
  usage_error "the following mandatory options are missing:$missing_opts"
Packit 030a23
fi
Packit 030a23
Packit 030a23
if test $# -eq 0; then
Packit 030a23
  usage_error "missing argument"
Packit 030a23
fi
Packit 030a23
Packit 030a23
if test $color_tests = yes; then
Packit 030a23
  # Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
Packit 030a23
  red='?[0;31m' # Red.
Packit 030a23
  grn='?[0;32m' # Green.
Packit 030a23
  lgn='?[1;32m' # Light green.
Packit 030a23
  blu='?[1;34m' # Blue.
Packit 030a23
  mgn='?[0;35m' # Magenta.
Packit 030a23
  std='?[m'     # No color.
Packit 030a23
else
Packit 030a23
  red= grn= lgn= blu= mgn= std=
Packit 030a23
fi
Packit 030a23
Packit 030a23
do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
Packit 030a23
trap "st=129; $do_exit" 1
Packit 030a23
trap "st=130; $do_exit" 2
Packit 030a23
trap "st=141; $do_exit" 13
Packit 030a23
trap "st=143; $do_exit" 15
Packit 030a23
Packit 030a23
# Test script is run here.
Packit 030a23
"$@" >$log_file 2>&1
Packit 030a23
estatus=$?
Packit 030a23
Packit 030a23
if test $enable_hard_errors = no && test $estatus -eq 99; then
Packit 030a23
  tweaked_estatus=1
Packit 030a23
else
Packit 030a23
  tweaked_estatus=$estatus
Packit 030a23
fi
Packit 030a23
Packit 030a23
case $tweaked_estatus:$expect_failure in
Packit 030a23
  0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
Packit 030a23
  0:*)   col=$grn res=PASS  recheck=no  gcopy=no;;
Packit 030a23
  77:*)  col=$blu res=SKIP  recheck=no  gcopy=yes;;
Packit 030a23
  99:*)  col=$mgn res=ERROR recheck=yes gcopy=yes;;
Packit 030a23
  *:yes) col=$lgn res=XFAIL recheck=no  gcopy=yes;;
Packit 030a23
  *:*)   col=$red res=FAIL  recheck=yes gcopy=yes;;
Packit 030a23
esac
Packit 030a23
Packit 030a23
# Report the test outcome and exit status in the logs, so that one can
Packit 030a23
# know whether the test passed or failed simply by looking at the '.log'
Packit 030a23
# file, without the need of also peaking into the corresponding '.trs'
Packit 030a23
# file (automake bug#11814).
Packit 030a23
echo "$res $test_name (exit status: $estatus)" >>$log_file
Packit 030a23
Packit 030a23
# Report outcome to console.
Packit 030a23
echo "${col}${res}${std}: $test_name"
Packit 030a23
Packit 030a23
# Register the test result, and other relevant metadata.
Packit 030a23
echo ":test-result: $res" > $trs_file
Packit 030a23
echo ":global-test-result: $res" >> $trs_file
Packit 030a23
echo ":recheck: $recheck" >> $trs_file
Packit 030a23
echo ":copy-in-global-log: $gcopy" >> $trs_file
Packit 030a23
Packit 030a23
# Local Variables:
Packit 030a23
# mode: shell-script
Packit 030a23
# sh-indentation: 2
Packit 030a23
# eval: (add-hook 'write-file-hooks 'time-stamp)
Packit 030a23
# time-stamp-start: "scriptversion="
Packit 030a23
# time-stamp-format: "%:y-%02m-%02d.%02H"
Packit 030a23
# time-stamp-time-zone: "UTC"
Packit 030a23
# time-stamp-end: "; # UTC"
Packit 030a23
# End: