This repository has been archived on 2022-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chez-openbsd/ta6ob/nanopass/.travis/run_tests
2022-08-09 23:28:25 +02:00

12 lines
400 B
Bash
Executable file

#!/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