Changeset 11239 for trunk/j/examples/.abclrc
- Timestamp:
- 09/17/07 16:13:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/examples/.abclrc
r11189 r11239 8 8 ;;; .lispworks (LispWorks) 9 9 10 (defparameter *ansi-tests-directory* 11 #-(or windows mswindows win32) 12 #p"/home/peter/xcl/x/ansi-tests/" 13 #+(or windows mswindows win32) 14 #p"c:\\msys\\1.0\\home\\peter\\xcl\\x\ansi-tests\\") 15 10 16 (defun run-ansi-tests (&optional (compile-tests t)) 11 17 (format t "COMPILE-TESTS is ~A~%" compile-tests) 12 (let ((*default-pathname-defaults* #-(or windows mswindows win32) 13 #p"/home/peter/gcl/ansi-tests/" 14 #+(or windows mswindows win32) 15 #p"c:\\cygwin\\home\\peter\\gcl\\ansi-tests\\")) 18 (let ((*default-pathname-defaults* *ansi-tests-directory*)) 16 19 #+(and abcl unix) 17 20 (run-shell-command "make clean" :directory *default-pathname-defaults*) … … 19 22 20 23 (defun run-random-tests (size nvars count) 21 (let ((*default-pathname-defaults* #-(or windows mswindows win32) 22 #p"/home/peter/gcl/ansi-tests/" 23 #+(or windows mswindows win32) 24 #p"c:\\cygwin\\home\\peter\\gcl\\ansi-tests\\")) 24 (let ((*default-pathname-defaults* *ansi-tests-directory*)) 25 25 (load "gclload1.lsp") 26 26 (load "random-int-form.lsp")
Note: See TracChangeset
for help on using the changeset viewer.