aboutsummaryrefslogtreecommitdiffstats
path: root/prog/encodingexec_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'prog/encodingexec_test.go')
-rw-r--r--prog/encodingexec_test.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/prog/encodingexec_test.go b/prog/encodingexec_test.go
index fe6a4dfb4..879aed893 100644
--- a/prog/encodingexec_test.go
+++ b/prog/encodingexec_test.go
@@ -465,14 +465,14 @@ func TestSerializeForExec(t *testing.T) {
{
`test() (fail_nth: 3)
test() (fail_nth: 4)
-test() (async)
+test() (async, rerun: 10)
`,
[]uint64{
- execInstrSetProps, 3, 0,
+ execInstrSetProps, 3, 0, 0,
callID("test"), ExecNoCopyout, 0,
- execInstrSetProps, 4, 0,
+ execInstrSetProps, 4, 0, 0,
callID("test"), ExecNoCopyout, 0,
- execInstrSetProps, 0, 1,
+ execInstrSetProps, 0, 1, 10,
callID("test"), ExecNoCopyout, 0,
execInstrEOF,
},
@@ -481,17 +481,17 @@ test() (async)
{
Meta: target.SyscallMap["test"],
Index: ExecNoCopyout,
- Props: CallProps{3, false},
+ Props: CallProps{3, false, 0},
},
{
Meta: target.SyscallMap["test"],
Index: ExecNoCopyout,
- Props: CallProps{4, false},
+ Props: CallProps{4, false, 0},
},
{
Meta: target.SyscallMap["test"],
Index: ExecNoCopyout,
- Props: CallProps{0, true},
+ Props: CallProps{0, true, 10},
},
},
},