stress_test: Fix i64/std case
The i64/std case was testing with 32-bit integers instead of 64-bit integers.
This commit is contained in:
@@ -37,7 +37,7 @@ const (
|
|||||||
var _stressTests = map[string]func() func(){
|
var _stressTests = map[string]func() func(){
|
||||||
"i32/std": stressStdInt32,
|
"i32/std": stressStdInt32,
|
||||||
"i32": stressInt32,
|
"i32": stressInt32,
|
||||||
"i64/std": stressStdInt32,
|
"i64/std": stressStdInt64,
|
||||||
"i64": stressInt64,
|
"i64": stressInt64,
|
||||||
"u32/std": stressStdUint32,
|
"u32/std": stressStdUint32,
|
||||||
"u32": stressUint32,
|
"u32": stressUint32,
|
||||||
|
|||||||
Reference in New Issue
Block a user