aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_test.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-09-12 11:05:45 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-09-12 13:03:27 +0200
commit306464056c8af8d00798b5ef9195950bd6502314 (patch)
tree9e52e84e25780c79c56c9bb78b32b4ca4e7b66d2 /executor/common_test.h
parentcc8045ff1f9b4b54834e6e95bedbeeb18c9a7a00 (diff)
sys/test/test: add a hanging test
Ensure that we can handle hanging syscalls in all modes.
Diffstat (limited to 'executor/common_test.h')
-rw-r--r--executor/common_test.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/executor/common_test.h b/executor/common_test.h
index ebbff1517..9d9adc36f 100644
--- a/executor/common_test.h
+++ b/executor/common_test.h
@@ -36,6 +36,15 @@ static long syz_exit(volatile long status)
}
#endif
+#if SYZ_EXECUTOR || __NR_syz_sleep_ms
+// syz_sleep_ms(ms intptr)
+static long syz_sleep_ms(volatile long ms)
+{
+ sleep_ms(ms);
+ return 0;
+}
+#endif
+
#if SYZ_EXECUTOR || __NR_syz_compare
#include <errno.h>
#include <string.h>