~ chicken-core (chicken-5) 47389780514daadf2fa5ed8cf9142d740b429597


commit 47389780514daadf2fa5ed8cf9142d740b429597
Author:     Evan Hanson <evhan@foldling.org>
AuthorDate: Mon Dec 12 15:52:59 2016 +1300
Commit:     Peter Bex <peter@more-magic.net>
CommitDate: Mon Dec 12 21:39:48 2016 +0100

    Only try to time tests when `time` command is available
    
    Signed-off-by: Peter Bex <peter@more-magic.net>

diff --git a/tests/runtests.sh b/tests/runtests.sh
index 745ad1c7..164c1f4f 100755
--- a/tests/runtests.sh
+++ b/tests/runtests.sh
@@ -87,6 +87,7 @@ SETUP_PREFIX="${SETUP_PREFIX} -e (register-program \"csi\" (make-pathname ${TEST
 TYPESDB=../types.db
 cp $TYPESDB test-repository/types.db
 
+time=`command >/dev/null -v time && echo time || :`
 compile="../csc -types ${TYPESDB} -ignore-repository ${COMPILE_OPTIONS} -o a.out"
 compile2="../csc -compiler ${CHICKEN} -v -I${TEST_DIR}/.. -L${TEST_DIR}/.. -include-path ${TEST_DIR}/.."
 compile_s="../csc -s -types ${TYPESDB} -ignore-repository ${COMPILE_OPTIONS}"
@@ -162,9 +163,9 @@ echo "======================================== specialization benchmark ..."
 $compile fft.scm -O2 -local -d0 -disable-interrupts -b -o fft1
 $compile fft.scm -O2 -local -specialize -debug x -d0 -disable-interrupts -b -o fft2 -specialize
 echo "normal:"
-time ./fft1 1000 7
+$time ./fft1 1000 7
 echo "specialized:"
-time ./fft2 1000 7
+$time ./fft2 1000 7
 
 echo "======================================== callback tests ..."
 $compile callback-tests.scm
@@ -440,7 +441,7 @@ $compile locative-stress-test.scm
 ./a.out
 
 echo "======================================== syntax-rules stress test ..."
-time $interpret -bnq syntax-rule-stress-test.scm
+$time $interpret -bnq syntax-rule-stress-test.scm
 
 echo "======================================== include test ..."
 mkdir -p a/b
Trap