test buffer didn't save for last commit -_-; including updated tests for 0 repeat fix
This commit is contained in:
parent
8e68493603
commit
6c633925df
|
@ -117,7 +117,8 @@
|
|||
(string= (pack "NX2" #x41424344) "AB") ;delete chars
|
||||
(string= (pack "c.c" 65 0 66 ) "B") ; truncate
|
||||
(string= (pack "c.c" 65 2 66) (concatenate 'string "A" (string #\null) "B")) ; null pad
|
||||
(string= (pack "c@0c" 65 66) "B") ;truncate
|
||||
(string= (pack "cc0c" 65 66 67) "AB") ; 0 repeat consumes nothing
|
||||
(string= (pack "c@0c" 65 66) "AB") ;truncate
|
||||
(string= (pack "c@2c" 65 66) (concatenate 'string "A" (string #\null) "B")) ; null pad
|
||||
))
|
||||
|
||||
|
|
Loading…
Reference in New Issue