Raymond Toy pushed to branch issue-339-add-alias-for-646-codeset at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • tests/issues.lisp
    ... ... @@ -1118,3 +1118,11 @@
    1118 1118
       (assert-error 'file-error
    
    1119 1119
                      (load "unknown.lisp" :if-does-not-exist t))
    
    1120 1120
       (assert-false (load "unknown.lisp" :if-does-not-exist nil)))
    
    1121
    +
    
    1122
    +(define-test issue.339.646-external-format
    
    1123
    +    (:tag :issues)
    
    1124
    +  ;; Just verify that the external format :646 exists and is the same
    
    1125
    +  ;; as :iso646-us.
    
    1126
    +  (assert-true (stream::find-external-format :646 nil))
    
    1127
    +  (assert-true (eq (stream::find-external-format :646 nil)
    
    1128
    +		   (stream::find-external-format :iso646-us nil))))