Skip to content
Snippets Groups Projects
Commit f36495a0 authored by Daniel Kochmański's avatar Daniel Kochmański Committed by Marius Gerbershagen
Browse files

cleanup: don't use logical pathnames for auxiliary files

While clever it is undesired to have all tests depend on auxiliary
files. We fix that by introducing compile-and-load* function which
merges the pathname with the auxiliary directory (*AUX-DIR*).
parent 886a6a41
No related branches found
No related tags found
No related merge requests found
;;;; Tests of the reader
(compile-and-load "ANSI-TESTS:AUX;reader-aux.lsp")
(compile-and-load* "reader-aux.lsp")
(in-package #:cl-test)
......
;;; Tests of sequences
(compile-and-load "ANSI-TESTS:AUX;search-aux.lsp")
(compile-and-load "ANSI-TESTS:AUX;subseq-aux.lsp")
(compile-and-load "ANSI-TESTS:AUX;remove-aux.lsp")
(compile-and-load "ANSI-TESTS:AUX;remove-duplicates-aux.lsp")
(compile-and-load* "search-aux.lsp")
(compile-and-load* "subseq-aux.lsp")
(compile-and-load* "remove-aux.lsp")
(compile-and-load* "remove-duplicates-aux.lsp")
(in-package #:cl-test)
......
;;; Tests of strings
(compile-and-load "ANSI-TESTS:AUX;string-aux.lsp")
(compile-and-load* "string-aux.lsp")
(in-package #:cl-test)
......
;;; Tests of symbols
(compile-and-load "ANSI-TESTS:AUX;cl-symbols-aux.lsp")
(compile-and-load* "cl-symbols-aux.lsp")
(in-package #:cl-test)
......
;;; Tests of types and classes
(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp")
(compile-and-load* "types-aux.lsp")
(in-package #:cl-test)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment