diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2026-01-25 15:07:04 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2026-01-25 15:07:04 +0200 |
| commit | e8a7fe3bd5c40168d531a6a4f00a7417a278d58c (patch) | |
| tree | ddbbead310cd8951ea277eb4e1a13dff7d1a3dd9 /tests/ipc-tail | |
| parent | 783e615ca031045eaa979532fc2c2b762ed8593f (diff) | |
| download | kmi-e8a7fe3bd5c40168d531a6a4f00a7417a278d58c.tar.gz kmi-e8a7fe3bd5c40168d531a6a4f00a7417a278d58c.zip | |
allow reading fdt in tests
Diffstat (limited to 'tests/ipc-tail')
| -rw-r--r-- | tests/ipc-tail/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ipc-tail/init.c b/tests/ipc-tail/init.c index 8f3efdd..3336945 100644 --- a/tests/ipc-tail/init.c +++ b/tests/ipc-tail/init.c @@ -31,7 +31,7 @@ START(pid, tid, d0, d1, d2, d3) printf("pid 2 tailing\n"); sys_ipc_tail4(3, 5, 6, 7, 8); - error("pid 2 ipc_tail failed\n"); + fail("pid 2 ipc_tail failed\n"); } else if (pid == 2) { printf("pid 3 caught ipc tail\n"); @@ -44,10 +44,10 @@ START(pid, tid, d0, d1, d2, d3) printf("pid 3 responding\n"); sys_ipc_resp4(5, 6, 7, 8); - error("pid 3 ipc_resp failed\n"); + fail("pid 3 ipc_resp failed\n"); } else { - error("weird pid: %ld\n", pid); + fail("weird pid: %ld\n", pid); } ok(); |
