diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-12-20 05:50:19 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-12-20 16:45:33 +0100 |
| commit | 08f0467614312b8c91ee8a76f8a0f349b797e7eb (patch) | |
| tree | 323f8e3b5cd892451a234d798bcc7db1641d4881 /executor/common_test.h | |
| parent | 9be5bbcf093c09879ebcd2dbb751168c9346d52c (diff) | |
sys/test: and another set of bitfield tests
Just trying to get my head around it (and fix this in tests).
Update #1542
Diffstat (limited to 'executor/common_test.h')
| -rw-r--r-- | executor/common_test.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/executor/common_test.h b/executor/common_test.h index 428ea2ce1..d06cf5bd7 100644 --- a/executor/common_test.h +++ b/executor/common_test.h @@ -44,7 +44,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; } |
