aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-12-20 05:50:19 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-12-20 16:45:33 +0100
commit08f0467614312b8c91ee8a76f8a0f349b797e7eb (patch)
tree323f8e3b5cd892451a234d798bcc7db1641d4881 /executor
parent9be5bbcf093c09879ebcd2dbb751168c9346d52c (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')
-rw-r--r--executor/common_test.h3
-rw-r--r--executor/defs.h8
2 files changed, 6 insertions, 5 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;
}
diff --git a/executor/defs.h b/executor/defs.h
index 64ce89841..9d9544156 100644
--- a/executor/defs.h
+++ b/executor/defs.h
@@ -165,7 +165,7 @@
#if GOARCH_32_fork_shmem
#define GOARCH "32_fork_shmem"
-#define SYZ_REVISION "b76dc5bd8427ce6dfe34e3dca95a1d4504f3d917"
+#define SYZ_REVISION "b80df26819487a006abc6c0a075ee80bde4b6e25"
#define SYZ_EXECUTOR_USES_FORK_SERVER 1
#define SYZ_EXECUTOR_USES_SHMEM 1
#define SYZ_PAGE_SIZE 4096
@@ -175,7 +175,7 @@
#if GOARCH_32_shmem
#define GOARCH "32_shmem"
-#define SYZ_REVISION "6e06e8fe2dc6ffb45403f08e4e5ce85fe3c1ae1b"
+#define SYZ_REVISION "30ed08b2ee47dd62e01653f3b4338bf1e59cc1c1"
#define SYZ_EXECUTOR_USES_FORK_SERVER 0
#define SYZ_EXECUTOR_USES_SHMEM 1
#define SYZ_PAGE_SIZE 8192
@@ -185,7 +185,7 @@
#if GOARCH_64
#define GOARCH "64"
-#define SYZ_REVISION "38b6142e1d528ab865c06298fb4b84c8b5126e1b"
+#define SYZ_REVISION "265018b7295a756dd1acd6d6c214815fd84d67e6"
#define SYZ_EXECUTOR_USES_FORK_SERVER 0
#define SYZ_EXECUTOR_USES_SHMEM 0
#define SYZ_PAGE_SIZE 4096
@@ -195,7 +195,7 @@
#if GOARCH_64_fork
#define GOARCH "64_fork"
-#define SYZ_REVISION "29137bab7309a05174b99d683a1c31207323ea3b"
+#define SYZ_REVISION "4d3e463754366cbf38840ef26e967a04a7bf6546"
#define SYZ_EXECUTOR_USES_FORK_SERVER 1
#define SYZ_EXECUTOR_USES_SHMEM 0
#define SYZ_PAGE_SIZE 8192