mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
vm: uncomment TestForLoopBigIter
It works just fine.
This commit is contained in:
parent
1c7d203993
commit
7e8dc9ad66
1 changed files with 13 additions and 15 deletions
|
@ -357,18 +357,16 @@ func TestDec(t *testing.T) {
|
|||
eval(t, src, big.NewInt(1))
|
||||
}
|
||||
|
||||
// TODO: This could be a nasty bug. Output of the VM is 65695.
|
||||
// Only happens above 100000, could be binary read issue.
|
||||
//func TestForLoopBigIter(t *testing.T) {
|
||||
// src := `
|
||||
// package foo
|
||||
// func Main() int {
|
||||
// x := 0
|
||||
// for i := 0; i < 100000; i++ {
|
||||
// x = i
|
||||
// }
|
||||
// return x
|
||||
// }
|
||||
// `
|
||||
// eval(t, src, big.NewInt(99999))
|
||||
//}
|
||||
func TestForLoopBigIter(t *testing.T) {
|
||||
src := `
|
||||
package foo
|
||||
func Main() int {
|
||||
x := 0
|
||||
for i := 0; i < 100000; i++ {
|
||||
x = i
|
||||
}
|
||||
return x
|
||||
}
|
||||
`
|
||||
eval(t, src, big.NewInt(99999))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue