~ chicken-core (chicken-5) 1437a1152ca9a5223a3c532e9a200309a39a8448
commit 1437a1152ca9a5223a3c532e9a200309a39a8448 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Tue Aug 9 09:14:02 2011 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Tue Aug 9 09:14:02 2011 +0200 add explicit path to fft test program invocation (suggested by Kon Lovett) diff --git a/tests/runtests.sh b/tests/runtests.sh index 83523c4d..8691f459 100644 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -61,9 +61,9 @@ echo "======================================== compiler tests (specialization) . $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:" -/usr/bin/time fft1 1000 7 +/usr/bin/time ./fft1 1000 7 echo "specialized:" -/usr/bin/time fft2 1000 7 +/usr/bin/time ./fft2 1000 7 echo "======================================== compiler inlining tests ..." $compile inlining-tests.scm -optimize-level 3Trap