Skip to content

Commit fd1692c

Browse files
committed
test version as of post to asdf-devel
1 parent 4da1205 commit fd1692c

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

test/test-init.lisp

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
;;;
2+
;;; 2010-03-08 janderson
3+
;;;
4+
;;; init file for asdf testing on aws
5+
;;; see asdf-pathname-test.sh
6+
7+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8+
9+
(in-package :cl-user)
10+
11+
(setq *load-verbose* (setq *compile-verbose* nil))
12+
13+
#+sbcl
14+
(declaim (sb-ext:muffle-conditions warning))
15+
16+
#+cmucl
17+
(declaim (optimize (ext:inhibit-warnings 3)))
18+
19+
(defparameter *binary-path*
20+
(make-pathname :directory `(:absolute "ebs" "test" "bin"
21+
#+abcl "abcl"
22+
#+allegro "alisp"
23+
#+ccl "ccl"
24+
#+clisp "clisp"
25+
#+cmucl "cmucl"
26+
#+ecl "ecl"
27+
#+lispworks "lw"
28+
#+sbcl "sbcl")
29+
:name "asdf" :type (pathname-type (compile-file-pathname "test.lisp"))))
30+
31+
(ensure-directories-exist *binary-path*)
32+
(unless (and (probe-file *binary-path*)
33+
(> (file-write-date *binary-path*) (file-write-date #p"/ebs/test/asdf/asdf.lisp")))
34+
(print (compile-file #p"/ebs/test/asdf/asdf.lisp" :output-file *binary-path*)))
35+
(load *binary-path*)
36+

0 commit comments

Comments
 (0)