Newer
Older
pfdietz
committed
test:
@rm -rf scratch
echo "(load \"doit.lsp\")" | $(LISP) | tee test.out
test-compiled:
echo "(load \"compileit.lsp\")" | $(LISP) | tee test.out
pfdietz
committed
pfdietz
committed
test-unixport:
echo "(load \"doit.lsp\")" | ../unixport/saved_ansi_gcl | tee test.out
pfdietz
committed
echo "(progn (setq *load-verbose* nil) \
(let* ((*standard-output* (make-broadcast-stream)) \
(*error-output* *standard-output*)) \
(load \"gclload1.lsp\") \
(funcall (symbol-function 'compile-and-load) \"random-int-form.lsp\"))) \
(in-package :cl-test) \
(let ((x (cl-test::test-random-integer-forms 1000 10 100 :random-size t :random-nvars t))) \
(setq x (cl-test::prune-results x)) \
(with-open-file (*standard-output* \"failures.lsp\" \
:direction :output \
:if-exists :append \
:if-does-not-exist :create) \
(mapc #'print x)) \
#-allegro (quit) #+allegro (excl::exit)))" | $(LISP)
pfdietz
committed
clean: