| 112 | | (test:for-all ((octets (test:gen-buffer))) |
|---|
| 113 | | (test:finishes (decode-string-from-octets (concatenate 'vector (vector 1 (length octets)) octets)))))) |
|---|
| | 112 | ;; kilian 2008-03-20: the following for-all test failed on ccl, |
|---|
| | 113 | ;; because the correct utf-8 sequence could produce a char-code |
|---|
| | 114 | ;; above char-code-limit - bknr.datastore::%decode-string should |
|---|
| | 115 | ;; throw an error in this case, but I dont know how to test this |
|---|
| | 116 | ;; (test:for-all ((octets (test:gen-buffer))) |
|---|
| | 117 | ;; (test:finishes (decode-string-from-octets (concatenate 'vector (vector 1 (length octets)) octets)))) |
|---|
| | 118 | )) |
|---|