Skip to content
Snippets Groups Projects
Commit 77ea90a8 authored by pfdietz's avatar pfdietz
Browse files

Added random testing targets to makefile.

parent ef314586
No related branches found
No related tags found
No related merge requests found
LISP=gcl
ACL=~/acl62_trial/alisp
test: test:
echo "(load \"gclload.lsp\")" | gcl | tee test.out echo "(load \"gclload.lsp\")" | gcl | tee test.out
...@@ -5,5 +7,21 @@ test: ...@@ -5,5 +7,21 @@ test:
test-unixport: test-unixport:
echo "(load \"gclload.lsp\")" | ../unixport/saved_ansi_gcl | tee test.out echo "(load \"gclload.lsp\")" | ../unixport/saved_ansi_gcl | tee test.out
random-test:
echo "(load \"gclload1.lsp\") \
(compile-and-load \"random-int-form.lsp\") \
(in-package :cl-test) \
(let ((x (cl-test::test-random-integer-forms 1000 3 200))) \
(print (cl-test::prune-results x)) nil)" | $(LISP)
random-acl-test:
echo "(progn (setq *load-verbose* nil) (load \"gclload1.lsp\")) \
(progn \
(compile-and-load \"random-int-form.lsp\") \
(in-package :cl-test) \
(setq cl-test::*compile-unoptimized-form* nil) \
(let ((x (cl-test::test-random-integer-forms 1000 3 50))) \
(print (cl-test::prune-results x)) nil))" | $(ACL)
clean: clean:
rm -f test.out *.fasl *.o *.so *~ *.fn *.x86f *.fasl *.ufsl *.fas *.lib \#*\# rm -f test.out *.fasl *.o *.so *~ *.fn *.x86f *.fasl *.ufsl *.fas *.lib \#*\#
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