freebsd_amp_hwpstate/contrib/bc/Test/timetest

15 lines
223 B
Plaintext
Raw Normal View History

1998-04-29 21:53:01 +00:00
#!/bin/sh
#
# Time the functions.
#
2000-01-16 10:01:07 +00:00
BC=../bc/bc
1998-04-29 21:53:01 +00:00
SYSBC=/usr/bin/bc
for file in exp.b ln.b sine.b atan.b jn.b mul.b div.b raise.b sqrt.b
do
for prog in $BC $SYSBC
do
echo Timing $file with $prog
time $prog -l $file
done
done