delve/pkg/dwarf/op/op_test.go
aarzilli 99cad1044b pkg/proc, pkg/dwarf/op: support DW_OP_piece, DW_OP_regX, DW_OP_fbreg
These are emitted by C compilers but also by the current development
version of the go compiler with the dwarflocationlists flag.
2017-11-21 11:51:02 -08:00

19 lines
400 B
Go

package op
import "testing"
func TestExecuteStackProgram(t *testing.T) {
var (
instructions = []byte{byte(DW_OP_consts), 0x1c, byte(DW_OP_consts), 0x1c, byte(DW_OP_plus)}
expected = int64(56)
)
actual, _, err := ExecuteStackProgram(DwarfRegisters{}, instructions)
if err != nil {
t.Fatal(err)
}
if actual != expected {
t.Fatalf("actual %d != expected %d", actual, expected)
}
}