You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

13 lines
400 B
Bash

#!/bin/bash
case $SCHEME in
vicare) vicare --more-file-extensions --source-path "." --r6rs-script test-all.ss ;;
ikarus) ikarus --r6rs-script test-all.ss ;;
chez) scheme --program test-all.ss ;;
ironscheme)
export -p PATH="$HOME/.dotnet:$PATH"
dotnet ./IronScheme/IronScheme.ConsoleCore.dll -- test-all.ss
;;
*) echo "unexpected scheme implementation $SCHEME" ; exit 1 ;;
esac