Files
rk35xx-android14/external/toybox/tests/files/bc/script.sh
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

25 lines
294 B
Bash

#! /bin/sh
if [ "$#" -lt 4 ]; then
echo "usage: script.sh <bc> <test_output1> <test_output2> <script>"
exit 1
fi
set -e
bc="$1"
shift
out1="$1"
shift
out2="$1"
shift
script="$1"
echo "quit" | bc -lq "$script" > "$out1"
echo "quit" | "$bc" -lq "$script" > "$out2"
diff "$out1" "$out2"