Fix Racket tests using schemerunme directory

For out of source builds
This commit is contained in:
William S Fulton 2022-09-02 19:17:38 +01:00
commit 4c58bb558f
3 changed files with 3 additions and 3 deletions

View file

@ -6,4 +6,4 @@
,form
#f))
(load "../schemerunme/integers.scm")
(load (build-path (path-only (path->complete-path (find-system-path 'run-file))) "../schemerunme/integers.scm"))

View file

@ -6,4 +6,4 @@
(define-macro (gc)
`(collect-garbage 'major))
(load "../schemerunme/newobject1.scm")
(load (build-path (path-only (path->complete-path (find-system-path 'run-file))) "../schemerunme/newobject1.scm"))

View file

@ -1,3 +1,3 @@
(load-extension "null_pointer.so")
(load "../schemerunme/null_pointer.scm")
(load (build-path (path-only (path->complete-path (find-system-path 'run-file))) "../schemerunme/null_pointer.scm"))