1#! /bin/sh 2# 3# SPDX-License-Identifier: BSD-2-Clause 4# 5# Copyright (c) 2018-2020 Gavin D. Howard and contributors. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions are met: 9# 10# * Redistributions of source code must retain the above copyright notice, this 11# list of conditions and the following disclaimer. 12# 13# * Redistributions in binary form must reproduce the above copyright notice, 14# this list of conditions and the following disclaimer in the documentation 15# and/or other materials provided with the distribution. 16# 17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27# POSSIBILITY OF SUCH DAMAGE. 28# 29 30set -e 31 32script="$0" 33 34testdir=$(dirname "${script}") 35 36if [ "$#" -lt 2 ]; then 37 printf 'usage: %s dir script [run_extra_tests] [run_stack_tests] [generate_tests] [time_tests] [exec args...]\n' "$script" 38 exit 1 39fi 40 41d="$1" 42shift 43 44f="$1" 45shift 46 47if [ "$#" -gt 0 ]; then 48 run_extra_tests="$1" 49 shift 50else 51 run_extra_tests=1 52fi 53 54if [ "$#" -gt 0 ]; then 55 run_stack_tests="$1" 56 shift 57else 58 run_stack_tests=1 59fi 60 61if [ "$#" -gt 0 ]; then 62 generate="$1" 63 shift 64else 65 generate=1 66fi 67 68if [ "$#" -gt 0 ]; then 69 time_tests="$1" 70 shift 71else 72 time_tests=0 73fi 74 75if [ "$#" -gt 0 ]; then 76 exe="$1" 77 shift 78else 79 exe="$testdir/../bin/$d" 80fi 81 82out="$testdir/../.log_${d}_test.txt" 83 84if [ "$d" = "bc" ]; then 85 86 if [ "$run_stack_tests" -ne 0 ]; then 87 options="-lgq" 88 else 89 options="-lq" 90 fi 91 92 halt="halt" 93 94else 95 options="-x" 96 halt="q" 97fi 98 99scriptdir="$testdir/$d/scripts" 100 101name="${f%.*}" 102 103if [ "$f" = "timeconst.bc" ]; then 104 exit 0 105fi 106 107if [ "$run_extra_tests" -eq 0 ]; then 108 if [ "$f" = "rand.bc" ]; then 109 printf 'Skipping %s script: %s\n' "$d" "$f" 110 exit 0 111 fi 112fi 113 114if [ "$run_stack_tests" -eq 0 ]; then 115 116 if [ "$f" = "globals.bc" -o "$f" = "references.bc" -o "$f" = "rand.bc" ]; then 117 printf 'Skipping %s script: %s\n' "$d" "$f" 118 exit 0 119 fi 120 121fi 122 123s="$scriptdir/$f" 124orig="$testdir/$name.txt" 125results="$scriptdir/$name.txt" 126 127if [ -f "$orig" ]; then 128 res="$orig" 129elif [ -f "$results" ]; then 130 res="$results" 131elif [ "$generate" -eq 0 ]; then 132 printf 'Skipping %s script %s\n' "$d" "$s" 133 exit 0 134else 135 printf 'Generating %s results...' "$f" 136 printf '%s\n' "$halt" | "$d" "$s" > "$results" 137 printf 'done\n' 138 res="$results" 139fi 140 141printf 'Running %s script %s...' "$d" "$f" 142 143if [ "$time_tests" -ne 0 ]; then 144 printf '\n' 145 printf '%s\n' "$halt" | /usr/bin/time -p "$exe" "$@" $options "$s" > "$out" 146 printf '\n' 147else 148 printf '%s\n' "$halt" | "$exe" "$@" $options "$s" > "$out" 149fi 150 151diff "$res" "$out" 152 153rm -f "$out" 154 155printf 'pass\n' 156