Changeset 10981


Ignore:
Timestamp:
02/03/06 17:42:07 (18 years ago)
Author:
piso
Message:

SILLY.2, PHYSICAL.30: changes for cmucl.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/tests/pathname-tests.lisp

    r10353 r10981  
    22;;;
    33;;; Copyright (C) 2005 Peter Graves
    4 ;;; $Id: pathname-tests.lisp,v 1.50 2005-11-04 19:33:02 piso Exp $
     4;;; $Id: pathname-tests.lisp,v 1.51 2006-02-03 17:42:07 piso Exp $
    55;;;
    66;;; This program is free software; you can redistribute it and/or
     
    393393#-sbcl
    394394(deftest physical.30
    395   #-(or allegro)
     395  #-(or allegro cmu)
    396396  (string= (namestring (make-pathname :name "..")) "..")
    397397  #+allegro
     
    399399           #-windows "../"
    400400           #+windows "..\\")
     401  #+cmu
     402  (signals-error (make-pathname :name "..") 'warning)
    401403  t)
    402404
     
    496498
    497499(deftest silly.2
    498   (signals-error (make-pathname :name "abc/def") 'error)
     500  (signals-error (make-pathname :name "abc/def")
     501                 #-cmu 'error
     502                 #+cmu 'warning)
    499503  t)
    500504
Note: See TracChangeset for help on using the changeset viewer.