add some encoding fields to Opcodes XML reader

This commit is contained in:
Michael McLoughlin
2018-11-21 21:38:19 -06:00
parent 59e6af7d36
commit 836252fa13
2 changed files with 44 additions and 3 deletions

View File

@@ -1,14 +1,12 @@
package opcodesxml
import (
"fmt"
"testing"
)
func TestReadFile(t *testing.T) {
is, err := ReadFile("testdata/x86_64.xml")
_, err := ReadFile("testdata/x86_64.xml")
if err != nil {
t.Fatal(err)
}
fmt.Printf("%#v\n", is)
}