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.

19 lines
434 B
Scheme

(cond-expand
(chicken-4
(load-relative "foops-test")
(load-relative "../ssql")
(load-relative "transformations-test")
(load-relative "ansi-test")
(load-relative "composition-test"))
(chicken-5
(import test (chicken platform))
(repository-path (cons ".." (repository-path)))
(load "foops-test")
(load "transformations-test")
(load "ansi-test")
(load "composition-test")))
(test-exit)