Files
clang-p2996/compiler-rt/test/msan/Linux/eventfd.cpp
Fangrui Song d21b3d346a compiler-rt: Rename .cc file in test/msan to .cpp
Like r367463, but for test/msan.

llvm-svn: 367653
2019-08-02 06:07:05 +00:00

19 lines
363 B
C++

// RUN: %clangxx_msan -O0 %s -o %t && %run %t 2>&1
#include <assert.h>
#include <sys/eventfd.h>
#include <sanitizer/msan_interface.h>
int main(int argc, char *argv[]) {
int efd = eventfd(42, 0);
assert(efd >= 0);
eventfd_t v;
int ret = eventfd_read(efd, &v);
assert(ret == 0);
__msan_check_mem_is_initialized(&v, sizeof(v));
assert(v == 42);
}