mirror of
https://github.com/Vita3K/unicorn.git
synced 2025-02-23 05:41:02 +00:00
fix #192 (outdated enums in Go test)
This commit is contained in:
parent
c41294d45d
commit
e45d225d69
@ -49,7 +49,7 @@ func TestX86InvalidRead(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
err = mu.Start(ADDRESS, ADDRESS+uint64(len(code)))
|
err = mu.Start(ADDRESS, ADDRESS+uint64(len(code)))
|
||||||
if err.(UcError) != ERR_READ_INVALID {
|
if err.(UcError) != ERR_READ_UNMAPPED {
|
||||||
t.Fatal("Expected ERR_READ_INVALID")
|
t.Fatal("Expected ERR_READ_INVALID")
|
||||||
}
|
}
|
||||||
ecx, _ := mu.RegRead(X86_REG_ECX)
|
ecx, _ := mu.RegRead(X86_REG_ECX)
|
||||||
@ -66,7 +66,7 @@ func TestX86InvalidWrite(t *testing.T) {
|
|||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
err = mu.Start(ADDRESS, ADDRESS+uint64(len(code)))
|
err = mu.Start(ADDRESS, ADDRESS+uint64(len(code)))
|
||||||
if err.(UcError) != ERR_WRITE_INVALID {
|
if err.(UcError) != ERR_WRITE_UNMAPPED {
|
||||||
t.Fatal("Expected ERR_WRITE_INVALID")
|
t.Fatal("Expected ERR_WRITE_INVALID")
|
||||||
}
|
}
|
||||||
ecx, _ := mu.RegRead(X86_REG_ECX)
|
ecx, _ := mu.RegRead(X86_REG_ECX)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user