File: runbench.sh

package info (click to toggle)
uim 1%3A1.9.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 37,436 kB
  • sloc: lisp: 354,934; ansic: 89,076; cpp: 29,587; sh: 5,708; makefile: 2,846; asm: 333; ruby: 290; xml: 30; javascript: 29
file content (9 lines) | stat: -rwxr-xr-x 152 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
#!/bin/sh

SSCM="src/sscm --system-load-path $PWD/lib"

for bench in bench/bench-*.scm
do
  echo "Running benchmark $bench..."
  time $SSCM $bench
done