feat: 9.5.9

This commit is contained in:
tmtt 2022-07-29 15:12:07 +02:00
parent cb1753732b
commit 35f43a7909
1084 changed files with 558985 additions and 0 deletions

12
nanopass/.travis/run_tests Executable file
View file

@ -0,0 +1,12 @@
#!/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