Fix unmarshalling integers directly, not through readint.

This commit is contained in:
Calvin Rose
2019-02-15 14:01:32 -05:00
parent 4d96ba3ba9
commit bdf03b4706
2 changed files with 12 additions and 8 deletions
+4
View File
@@ -154,6 +154,10 @@
(testmarsh 1 "marshal small integers")
(testmarsh -1 "marshal integers (-1)")
(testmarsh 199 "marshal small integers (199)")
(testmarsh 5000 "marshal medium integers (5000)")
(testmarsh -5000 "marshal small integers (-5000)")
(testmarsh 10000 "marshal large integers (10000)")
(testmarsh -10000 "marshal large integers (-10000)")
(testmarsh 1.0 "marshal double")
(testmarsh "doctordolittle" "marshal string")
(testmarsh :chickenshwarma "marshal symbol")