Test output for string-utils [ok]
Testing time: 0s
/home/mario/local/chicken-4.8.0.3/bin/csi -script run.scm < /dev/null -- testing String Utils ------------------------------------------------------ -- testing Memoized ------------------------------------------------------ (make-string* 1 #\a) ............................................. [ PASS] a5 ............................................................... [ PASS] spc5 ............................................................. [ PASS] (eq? a5 (make-string* 5 #\a)) .................................... [ PASS] (eq? spc5 (make-string* 5 #\space)) .............................. [ PASS] 5 tests completed in 0.0 seconds. 5 out of 5 (100%) tests passed. -- done testing Memoized ------------------------------------------------- -- testing Unicode ------------------------------------------------------- (ascii-codepoint? #\a) ........................................... [ PASS] (unicode-string #\a #\b #\c) ..................................... [ PASS] (string->hex (unicode-char->string #\x3bb)) ...................... [ PASS] (string->hex (unicode-string #\x3bb #\x3bb #\x3bb)) .............. [ PASS] (string->hex (unicode-make-string 2 #\x3bb)) ..................... [ PASS] 5 tests completed in 0.0 seconds. 5 out of 5 (100%) tests passed. -- done testing Unicode -------------------------------------------------- -- testing To Hex -------------------------------------------------------- t ................................................................ [ PASS] t ................................................................ [ PASS] t ................................................................ [ PASS] 3 tests completed in 0.002 seconds. 3 out of 3 (100%) tests passed. -- done testing To Hex --------------------------------------------------- -- testing String -> Hex ------------------------------------------------- (string->hex "12abc34" 2 5) ...................................... [ PASS] (string->hex "ABCDEF") ........................................... [ PASS] (string->hex "ABCDEF" 1) ......................................... [ PASS] (string->hex "ABCDEF" 1 3) ....................................... [ PASS] 4 tests completed in 0.0 seconds. 4 out of 4 (100%) tests passed. -- done testing String -> Hex -------------------------------------------- 4 subgroups completed in 0.013 seconds. 4 out of 4 (100%) subgroups passed. -- done testing String Utils -------------------------------------------------