[Git][cmucl/cmucl][master] 2 commits: Fix #501: unix-tests::mkstemp.name-returned sometimes fails
Raymond Toy pushed to branch master at cmucl / cmucl Commits: 70be84be by Raymond Toy at 2026-05-04T17:20:45-07:00 Fix #501: unix-tests::mkstemp.name-returned sometimes fails - - - - - 526bc7d8 by Raymond Toy at 2026-05-04T17:20:46-07:00 Merge branch 'issue-501-mkstemp-name-returned-test-fails' into 'master' Fix #501: unix-tests::mkstemp.name-returned sometimes fails Closes #501 See merge request cmucl/cmucl!378 - - - - - 1 changed file: - tests/unix.lisp Changes: ===================================== tests/unix.lisp ===================================== @@ -16,7 +16,7 @@ (assert-true fd) (assert-true (equalp (length filename) (length template))) (assert-false (equalp filename template)) - (assert-true (>= 5 (mismatch filename template)) + (assert-true (string/= filename template) filename template)))) (when fd View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/523b8fc34dfac4b6c91065b... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/523b8fc34dfac4b6c91065b... You're receiving this email because of your account on gitlab.common-lisp.net. Manage all notifications: https://gitlab.common-lisp.net/-/profile/notifications | Help: https://gitlab.common-lisp.net/help
participants (1)
-
Raymond Toy (@rtoy)