Files
clang-p2996/compiler-rt/test/msan/sigwait.cpp
Gui Andrade 16784c0558 test/msan/sigwait: Don't silently ignore assertion failures
Summary: As the parent process would return 0 independent of whether the child succeeded, assertions in the child would be ignored.

Reviewers: eugenis

Reviewed By: eugenis

Subscribers: #sanitizers

Tags: #sanitizers

Differential Revision: https://reviews.llvm.org/D82400
2020-06-23 14:10:51 -07:00

39 lines
838 B
C++

// RUN: %clangxx_msan -std=c++11 -O0 -g %s -o %t && %run %t
// RUN: %clangxx_msan -DPOSITIVE -std=c++11 -O0 -g %s -o %t && not %run %t 2>&1 | FileCheck %s
#include <assert.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <unistd.h>
#include <sanitizer/msan_interface.h>
void test_sigwait() {
sigset_t s;
#ifndef POSITIVE
sigemptyset(&s);
sigaddset(&s, SIGUSR1);
#endif
sigprocmask(SIG_BLOCK, &s, 0);
// CHECK: MemorySanitizer: use-of-uninitialized-value
if (pid_t pid = fork()) {
kill(pid, SIGUSR1);
int child_stat;
wait(&child_stat);
_exit(!WIFEXITED(child_stat));
} else {
int sig;
int res = sigwait(&s, &sig);
assert(!res);
// The following checks that sig is initialized.
assert(sig == SIGUSR1);
}
}
int main(void) {
test_sigwait();
return 0;
}