File: test4.script

package info (click to toggle)
cl-asdf 1.111-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 428 kB
  • ctags: 189
  • sloc: lisp: 1,395; sh: 128; makefile: 41
file content (12 lines) | stat: -rw-r--r-- 454 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
;;; -*- Lisp -*-
;;; -*- Lisp -*-
(load "script-support")
(load "../asdf")
(in-package :asdf)
(cl-user::exit-on-error 
 (setf asdf:*central-registry* '(*default-pathname-defaults*))
 (assert (not (component-property (find-system 'test3) :foo)))
 (assert (equal (component-property (find-system 'test3) :prop1) "value"))
 (setf (component-property (find-system 'test3) :foo) "bar")
 (assert (equal (component-property (find-system 'test3) :foo) "bar"))
 )