Open
Description
The test needs to be split into value-radix pairs that work on the web and value-radix pairs that only work on the VM.
The underlying JavaScript .toString
rounds the string result, adding zeros in the least significant position when it does not make a difference to the IEEE double represented when reparsed in the radix.
For example, value 0x1000000000000000
in a power-of-two radix should work perfectly on the web, but with radix 3, the low 3 digits are 000
where the 'correct' digits would be 201
.