~ubuntu-branches/ubuntu/maverick/bc/maverick

« back to all changes in this revision

Viewing changes to Test/timetest

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2002-04-13 11:33:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020413113349-hl2r1t730b91ov68
Tags: upstream-1.06
ImportĀ upstreamĀ versionĀ 1.06

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# Time the functions.
 
4
#
 
5
SYSBC=/usr/bin/bc
 
6
if [ x$BC = x ] ; then
 
7
  BC=../bc/bc
 
8
fi
 
9
for file in exp.b ln.b sine.b atan.b jn.b mul.b div.b raise.b sqrt.b
 
10
do
 
11
for prog in $BC $SYSBC $OTHERBC
 
12
do
 
13
echo Timing $file with $prog
 
14
time $prog -l $file
 
15
done
 
16
done