1#! /bin/sh 2# 3# Copyright (c) 2018-2021 Gavin D. Howard and contributors. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions are met: 7# 8# * Redistributions of source code must retain the above copyright notice, this 9# list of conditions and the following disclaimer. 10# 11# * Redistributions in binary form must reproduce the above copyright notice, 12# this list of conditions and the following disclaimer in the documentation 13# and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 16# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 19# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 20# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 21# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 22# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 24# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 25# POSSIBILITY OF SUCH DAMAGE. 26# 27 28# Tests the timeconst.bc script from the Linux kernel build. 29# You can find the script at kernel/time/timeconst.bc in any Linux repo. 30# One such repo is: https://github.com/torvalds/linux 31 32script="$0" 33testdir=$(dirname "$script") 34 35if [ "$#" -gt 0 ]; then 36 timeconst="$1" 37 shift 38else 39 timeconst="$testdir/scripts/timeconst.bc" 40fi 41 42if [ "$#" -gt 0 ]; then 43 bc="$1" 44 shift 45else 46 bc="$testdir/../../bin/bc" 47fi 48 49out1="$testdir/../.log_bc_timeconst.txt" 50out2="$testdir/../.log_bc_timeconst_test.txt" 51 52base=$(basename "$timeconst") 53 54if [ ! -f "$timeconst" ]; then 55 printf 'Warning: %s does not exist\n' "$timeconst" 56 printf 'Skipping...\n' 57 exit 0 58fi 59 60unset BC_ENV_ARGS 61unset BC_LINE_LENGTH 62unset DC_ENV_ARGS 63unset DC_LINE_LENGTH 64 65printf 'Running %s...' "$base" 66 67nums=$(printf 'for (i = 0; i <= 1000; ++i) { i }\n' | bc) 68 69for i in $nums; do 70 71 printf '%s\n' "$i" | bc -q "$timeconst" > "$out1" 72 73 err="$?" 74 75 if [ "$err" -ne 0 ]; then 76 printf '\nOther bc is not GNU compatible. Skipping...\n' 77 exit 0 78 fi 79 80 printf '%s\n' "$i" | "$bc" "$@" -q "$timeconst" > "$out2" 81 82 diff "$out1" "$out2" 83 84 error="$?" 85 86 if [ "$error" -ne 0 ]; then 87 printf '\nFailed on input: %s\n' "$i" 88 exit "$error" 89 fi 90 91done 92 93rm -f "$out1" 94rm -f "$out2" 95 96exec printf 'pass\n' 97