summaryrefslogtreecommitdiff
path: root/tests/test_memcpy_null_dst.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_memcpy_null_dst.c')
-rw-r--r--tests/test_memcpy_null_dst.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_memcpy_null_dst.c b/tests/test_memcpy_null_dst.c
new file mode 100644
index 0000000..9def69c
--- /dev/null
+++ b/tests/test_memcpy_null_dst.c
@@ -0,0 +1,16 @@
1#include "common.h"
2
3#include <string.h>
4
5int main(int argc, char** argv) {
6#ifndef __GNUC__
7 char buffer[12] = {0};
8
9 CHK_FAIL_START
10 memcpy(buffer, NULL, 0);
11 CHK_FAIL_END
12
13 puts(buffer);
14#endif
15 return ret;
16}