ingester for opcodes xml
This commit is contained in:
14
internal/opcodesxml/opcodesxml_test.go
Normal file
14
internal/opcodesxml/opcodesxml_test.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package opcodesxml
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestReadFile(t *testing.T) {
|
||||
is, err := ReadFile("testdata/x86_64.xml")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
fmt.Printf("%#v\n", is)
|
||||
}
|
||||
Reference in New Issue
Block a user