- Timestamp:
- 02/03/06 17:42:07 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/tests/pathname-tests.lisp
r10353 r10981 2 2 ;;; 3 3 ;;; Copyright (C) 2005 Peter Graves 4 ;;; $Id: pathname-tests.lisp,v 1.5 0 2005-11-04 19:33:02piso Exp $4 ;;; $Id: pathname-tests.lisp,v 1.51 2006-02-03 17:42:07 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 393 393 #-sbcl 394 394 (deftest physical.30 395 #-(or allegro )395 #-(or allegro cmu) 396 396 (string= (namestring (make-pathname :name "..")) "..") 397 397 #+allegro … … 399 399 #-windows "../" 400 400 #+windows "..\\") 401 #+cmu 402 (signals-error (make-pathname :name "..") 'warning) 401 403 t) 402 404 … … 496 498 497 499 (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) 499 503 t) 500 504
Note: See TracChangeset
for help on using the changeset viewer.