Merge pull request #773 from nspcc-dev/fix/bigint
vm: use truncated division for Integers
This commit is contained in:
commit
5148b98f43
2 changed files with 16 additions and 6 deletions
|
@ -776,7 +776,7 @@ func (v *VM) execute(ctx *Context, op opcode.Opcode, parameter []byte) (err erro
|
|||
a := v.estack.Pop().BigInt()
|
||||
v.checkBigIntSize(a)
|
||||
|
||||
v.estack.PushVal(new(big.Int).Div(a, b))
|
||||
v.estack.PushVal(new(big.Int).Quo(a, b))
|
||||
|
||||
case opcode.MUL:
|
||||
a := v.estack.Pop().BigInt()
|
||||
|
|
|
@ -832,11 +832,21 @@ func TestMULBigResult(t *testing.T) {
|
|||
|
||||
func TestDiv(t *testing.T) {
|
||||
prog := makeProgram(opcode.DIV)
|
||||
vm := load(prog)
|
||||
vm.estack.PushVal(4)
|
||||
vm.estack.PushVal(2)
|
||||
runVM(t, vm)
|
||||
assert.Equal(t, int64(2), vm.estack.Pop().BigInt().Int64())
|
||||
runCase := func(p, q, result int64) func(t *testing.T) {
|
||||
return func(t *testing.T) {
|
||||
vm := load(prog)
|
||||
vm.estack.PushVal(p)
|
||||
vm.estack.PushVal(q)
|
||||
runVM(t, vm)
|
||||
assert.Equal(t, result, vm.estack.Pop().BigInt().Int64())
|
||||
}
|
||||
}
|
||||
|
||||
t.Run("positive/positive", runCase(5, 2, 2))
|
||||
t.Run("positive/negative", runCase(5, -2, -2))
|
||||
t.Run("negative/positive", runCase(-5, 2, -2))
|
||||
t.Run("negative/negative", runCase(-5, -2, 2))
|
||||
|
||||
}
|
||||
|
||||
func TestSub(t *testing.T) {
|
||||
|
|
Loading…
Reference in a new issue