Ignore:
Timestamp:
09/17/07 16:13:13 (16 years ago)
Author:
piso
Message:

*ansi-tests-directory*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/examples/.abclrc

    r11189 r11239  
    88;;;   .lispworks         (LispWorks)
    99
     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
    1016(defun run-ansi-tests (&optional (compile-tests t))
    1117  (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*))
    1619    #+(and abcl unix)
    1720    (run-shell-command "make clean" :directory *default-pathname-defaults*)
     
    1922
    2023(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*))
    2525    (load "gclload1.lsp")
    2626    (load "random-int-form.lsp")
Note: See TracChangeset for help on using the changeset viewer.