Mercurial > hg > CbC > CbC_llvm
view compiler-rt/test/hwasan/TestCases/Linux/vfork.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// https://github.com/google/sanitizers/issues/925 // RUN: %clang_hwasan -O0 %s -o %t && %run %t 2>&1 // REQUIRES: aarch64-target-arch || x86_64-target-arch || riscv64-target-arch // REQUIRES: pointer-tagging #include <assert.h> #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include <stdio.h> #include <sanitizer/hwasan_interface.h> __attribute__((noinline, no_sanitize("hwaddress"))) void child() { char x[10000]; __hwasan_tag_memory(x, 0xAA, sizeof(x)); _exit(0); } __attribute__((noinline, no_sanitize("hwaddress"))) void parent() { char x[10000]; __hwasan_print_shadow(&x, sizeof(x)); assert(__hwasan_test_shadow(x, sizeof(x)) == -1); } int main(int argc, char **argv) { if (vfork()) parent(); else child(); return 0; }