Changeset View
Changeset View
Standalone View
Standalone View
compiler-rt/test/msan/signal_stress_test.cpp
// RUN: %clangxx_msan -std=c++11 -O0 %s -o %t && %run %t | // RUN: %clangxx_msan -fno-sanitize-memory-param-retval -std=c++11 -O0 %s -o %t && %run %t | ||||
// | // | ||||
// Test that va_arg shadow from a signal handler does not leak outside. | // Test that va_arg shadow from a signal handler does not leak outside. | ||||
// Reported deadly signal due to stack-overflow | // Reported deadly signal due to stack-overflow | ||||
// XFAIL: netbsd | // XFAIL: netbsd | ||||
#include <signal.h> | #include <signal.h> | ||||
#include <stdarg.h> | #include <stdarg.h> | ||||
▲ Show 20 Lines • Show All 65 Lines • Show Last 20 Lines |