Fix tests when using go 1.10 (#949)

This commit is contained in:
Sebastian Willenborg 2018-03-20 17:36:37 +01:00 committed by Nguyen Anh Quynh
parent 1f408ce359
commit 9a01ae8379

View File

@ -1,7 +1,6 @@
package unicorn package unicorn
import ( import (
"fmt"
"testing" "testing"
) )
@ -21,7 +20,7 @@ func TestMemUnmap(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
if err := mu.MemWrite(0x1000, tmp); err.(UcError) != ERR_WRITE_UNMAPPED { if err := mu.MemWrite(0x1000, tmp); err.(UcError) != ERR_WRITE_UNMAPPED {
t.Fatal(fmt.Errorf("Expected ERR_WRITE_UNMAPPED, got: %v", err)) t.Fatalf("Expected ERR_WRITE_UNMAPPED, got: %v", err)
} }
} }
@ -70,6 +69,6 @@ func TestQuery(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
if mode != MODE_THUMB { if mode != MODE_THUMB {
t.Fatal("query returned invalid mode: %d != %d", mode, MODE_THUMB) t.Fatalf("query returned invalid mode: %d != %d", mode, MODE_THUMB)
} }
} }