From 08f0467614312b8c91ee8a76f8a0f349b797e7eb Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 20 Dec 2019 05:50:19 +0100 Subject: sys/test: and another set of bitfield tests Just trying to get my head around it (and fix this in tests). Update #1542 --- pkg/csource/generated.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/csource/generated.go b/pkg/csource/generated.go index d082d40cc..6a360746c 100644 --- a/pkg/csource/generated.go +++ b/pkg/csource/generated.go @@ -6026,7 +6026,8 @@ static long syz_exit(volatile long status) static long syz_compare(volatile long want, volatile long want_len, volatile long got, volatile long got_len) { if (want_len != got_len) { - debug("syz_compare: want_len=%lu got_len=%lu\n", want_len, got_len); + debug("syz_compare: want_len=%lu got_len=%lu data:\n", want_len, got_len); + debug_dump_data((char*)got, got_len); errno = EBADF; return -1; } -- cgit mrf-deployment