Raymond Toy pushed to branch issue-130-file-author-in-c at cmucl / cmucl
Commits:
-
3de2409f
by Raymond Toy at 2022-08-31T08:59:18-07:00
2 changed files:
Changes:
... | ... | @@ -579,3 +579,11 @@ |
579 | 579 | with user-info = (unix:unix-getpwuid uid)
|
580 | 580 | while user-info
|
581 | 581 | finally (assert-false user-info)))
|
582 | + |
|
583 | +(define-test issue.130
|
|
584 | + (:tag :issues)
|
|
585 | + ;; Just verify that file-author works. In particular "." should
|
|
586 | + ;; work and not return NIL.
|
|
587 | + (assert-true (file-author "."))
|
|
588 | + (assert-true (file-author "bin/build.sh"))
|
|
589 | + (assert-true (file-author "tests/안녕하십니까.txt"))) |
1 | +The file name of this file is "안녕하십니까.txt" ("Hello" in Korean.)
|
|
2 | + |
|
3 | + |