Ignore:
Timestamp:
05/24/11 12:25:55 (12 years ago)
Author:
Mark Evenson
Message:

Fix #150: MAKE-PATHNAME ignores version in :DEFAULTS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/test/lisp/abcl/pathname-tests.lisp

    r13263 r13294  
    17181718    (make-pathname :directory nil :defaults "/home/fare/")
    17191719  #p"")
     1720
     1721(deftest pathname.make-pathname.2
     1722    (let ((p (make-pathname
     1723              :defaults (make-pathname :name :wild :type :wild :version :wild :directory :wild))))
     1724      (values
     1725       (pathname-name p) (pathname-type p) (pathname-version p) (pathname-directory p)))
     1726  :wild :wild :wild (:absolute :wild))
     1727     
Note: See TracChangeset for help on using the changeset viewer.