This commit is contained in:
obscuren 2014-04-05 10:49:07 +02:00
parent 7d0348e4ba
commit 90bb512f42

View File

@ -83,18 +83,23 @@ func TestRun4(t *testing.T) {
state := NewState(ethutil.NewTrie(db, "")) state := NewState(ethutil.NewTrie(db, ""))
asm, err := mutan.Compile(strings.NewReader(` asm, err := mutan.Compile(strings.NewReader(`
a = 10 int32 a = 10
b = 10 int32 b = 10
if a == b { if a == b {
c = 10 int32 c = 10
if c == 10 { if c == 10 {
d = 1000 int32 d = 1000
e = 10 int32 e = 10
} }
} }
store[0] = 20 store[0] = 20
store[a] = 20 store[a] = 20
store[b] = this.caller()
int8[10] ret
int8[10] arg
call(1234, 0, 100000000, arg, ret)
`), false) `), false)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)