summary refs log tree commit diff stats
path: root/tests/stdlib/thashes.nim
diff options
context:
space:
mode:
authormetagn <metagngn@gmail.com>2023-06-25 01:01:08 +0300
committerGitHub <noreply@github.com>2023-06-25 00:01:08 +0200
commitf718f295df3f6ee5d7fd6fc19e39ac663821b00a (patch)
tree3ed631793cd2d838ad4909afa51770b28864cb14 /tests/stdlib/thashes.nim
parentc6c85f84db3bd7bd2d1c5823020c7df007f1bb69 (diff)
downloadNim-f718f295df3f6ee5d7fd6fc19e39ac663821b00a.tar.gz
fix VM uint conversion size bug, stricter int gen on JS (#22150)
* fix VM uint conversion bug, stricter int gen on JS

fixes #19929

* fix float -> uint64 conversion too

* no need to mask to source type

* simpler diff with explanation, add test for described issue
Diffstat (limited to 'tests/stdlib/thashes.nim')
-rw-r--r--tests/stdlib/thashes.nim3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/stdlib/thashes.nim b/tests/stdlib/thashes.nim
index 6b5e055b4..b6fbbbdb7 100644
--- a/tests/stdlib/thashes.nim
+++ b/tests/stdlib/thashes.nim
@@ -29,6 +29,9 @@ block hashes:
     const wy123 = hashWangYi1(123)
     doAssert wy123 != 0
     doAssert hashWangYi1(123) == wy123
+    const wyNeg123 = hashWangYi1(-123)
+    doAssert wyNeg123 != 0
+    doAssert hashWangYi1(-123) == wyNeg123
 
 
   # "hashIdentity value incorrect at 456"