uffi uffi-tests.asd,1.1,1.2

"Kevin M. Rosenberg" <[email protected]> Tue, 29 Apr 2003 06:57:12 -0600
Newsgroups gmane.lisp.uffi.cvs
Message-ID <[email protected]>
Update of /pubcvs/uffi
In directory boa.b9.com:/tmp/cvs-serv14841

Modified Files:
	uffi-tests.asd 
Log Message:


Index: uffi-tests.asd
===================================================================
RCS file: /pubcvs/uffi/uffi-tests.asd,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** uffi-tests.asd	29 Apr 2003 12:09:36 -0000	1.1
--- uffi-tests.asd	29 Apr 2003 12:57:10 -0000	1.2
***************
*** 16,21 ****
  
  (defsystem uffi-tests
!     :depends-on (:rt :uffi)
!     :components ((:file "tests")))
  
  (defmethod perform ((o test-op) (c (eql (find-system :uffi-tests))))
--- 16,28 ----
  
  (defsystem uffi-tests
!     :depends-on (:uffi)
!     :components
!     ((:module tests
! 	      :components
! 	      ((:file "rt")
! 	       (:file "package" :depends-on ("rt"))
! 	       (:file "strtol" :depends-on ("package"))
! 	       (:file "atoifl" :depends-on ("package"))
! 	       ))))
  
  (defmethod perform ((o test-op) (c (eql (find-system :uffi-tests))))
***************
*** 23,25 ****
  		       (find-package '#:regression-test)))
        (error "test-op failed")))
- 
--- 30,31 ----