aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorMarco Vanotti <mvanotti@google.com>2020-03-20 11:20:02 -0700
committerDmitry Vyukov <dvyukov@google.com>2020-03-21 07:02:15 +0100
commitaa6c6a5572a4797ea6109a75ca50a2c86908375e (patch)
tree1e7e8d579c9969bcf4d301a8e6da97319c2c38fb /pkg
parent2c31c529a9a44be5d99e769204b7a4b84b93eec1 (diff)
sys/fuchsia: Add cprng and vmo tests.
This commit adds two new tests for fuchsia. One tests a basic syscall (zx_cprng_draw), and the other does multiple tests over a vmo.
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 {