aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'executor/common_test.h')
-rw-r--r--executor/common_test.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/executor/common_test.h b/executor/common_test.h
index 51b135377..592fafced 100644
--- a/executor/common_test.h
+++ b/executor/common_test.h
@@ -40,7 +40,10 @@ static long syz_compare(long want, long want_len, long got, long got_len)
return -1;
}
if (memcmp((void*)want, (void*)got, want_len)) {
- debug("syz_compare: data differs\n");
+ debug("syz_compare: data differs, want:\n");
+ debug_dump_data((char*)want, want_len);
+ debug("got:\n");
+ debug_dump_data((char*)got, got_len);
errno = EINVAL;
return -1;
}