aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/runtest/run.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go
index 399fb2f49..7c2b1e6a4 100644
--- a/pkg/runtest/run.go
+++ b/pkg/runtest/run.go
@@ -291,6 +291,9 @@ func parseProg(target *prog.Target, dir, filename string) (*prog.Prog, map[strin
"EINVAL": 22,
"ENOTTY": 25,
"EOPNOTSUPP": 95,
+
+ // Fuchsia specific errors.
+ "ZX_ERR_BAD_HANDLE": 11,
}
info := &ipc.ProgInfo{Calls: make([]ipc.CallInfo, len(p.Calls))}
for i, call := range p.Calls {