Fixing testing

This commit is contained in:
retropikzel 2026-01-26 18:11:08 +02:00
parent 4131b8fd00
commit c7dddc4a44
3 changed files with 8 additions and 14 deletions

View File

@ -11,7 +11,7 @@ test-r6rs-script:
@rm -rf testvenv/ \ @rm -rf testvenv/ \
&& ./scheme-venv ${SCHEME} r6rs testvenv \ && ./scheme-venv ${SCHEME} r6rs testvenv \
&& ./testvenv/bin/snow-chibi install --always-yes retropikzel.hello \ && ./testvenv/bin/snow-chibi install --always-yes retropikzel.hello \
&& ./testvenv/bin/akku install akku-r7rs \ && ./testvenv/bin/akku install chez-srfi \
&& SCHEME_VENV_DEBUG=1 ./testvenv/bin/scheme-script test.sps && SCHEME_VENV_DEBUG=1 ./testvenv/bin/scheme-script test.sps
test-r6rs-compile: test-r6rs-compile:
@ -19,7 +19,7 @@ test-r6rs-compile:
@rm -rf testvenv/ \ @rm -rf testvenv/ \
&& ./scheme-venv ${SCHEME} r6rs testvenv \ && ./scheme-venv ${SCHEME} r6rs testvenv \
&& ./testvenv/bin/snow-chibi install --always-yes retropikzel.hello \ && ./testvenv/bin/snow-chibi install --always-yes retropikzel.hello \
&& ./testvenv/bin/akku install akku-r7rs \ && ./testvenv/bin/akku install chez-srfi \
&& SCHEME_VENV_DEBUG=1 ./testvenv/bin/scheme-compile compile-test.sps \ && SCHEME_VENV_DEBUG=1 ./testvenv/bin/scheme-compile compile-test.sps \
&& ./compile-test && ./compile-test

View File

@ -1,9 +1,6 @@
(import (scheme base) (import (rnrs)
(scheme write)
(scheme process-context)
(retropikzel hello)
(srfi :64)) (srfi :64))
(display "scheme-venv-compile-test-success-") (display "scheme-venv-compile-test-success-Hello")
(hello) (newline)
(exit 0) (exit 0)

View File

@ -1,9 +1,6 @@
(import (scheme base) (import (rnrs)
(scheme write)
(scheme process-context)
(retropikzel hello)
(srfi :64)) (srfi :64))
(display "scheme-venv-script-test-success-") (display "scheme-venv-script-test-success-Hello")
(hello) (newline)
(exit 0) (exit 0)