fix broken io test on 32 bit

This commit is contained in:
jangko 2023-06-22 22:54:22 +07:00
parent 025428d0ae
commit c5955f7e97
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 4 additions and 1 deletions

View File

@ -939,6 +939,9 @@ proc main() =
let z = "115792089237316195423570985008687907853269984665640564039457584007913129639935".u256 let z = "115792089237316195423570985008687907853269984665640564039457584007913129639935".u256
let kk = z.truncate(int) let kk = z.truncate(int)
when sizeof(int) == 4:
check kk == 2147483647
else:
check kk == 9223372036854775807 check kk == 9223372036854775807
test "Parsing an unexpected 0x prefix for a decimal string is a CatchableError and not a defect": test "Parsing an unexpected 0x prefix for a decimal string is a CatchableError and not a defect":