[AA] Rename CaptureInfo -> CaptureAnalysis (NFC) (#116842)
[llvm-project.git] / compiler-rt / test / msan / ioctl.cpp
blob66ac6e95b665151e411b773338bdb020777f49aa
1 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
2 // RUN: %clangxx_msan -O3 -g %s -o %t && %run %t
4 #include <assert.h>
5 #include <stdlib.h>
6 #include <sys/ioctl.h>
7 #include <sys/socket.h>
8 #include <unistd.h>
10 int main(int argc, char **argv) {
11 int fd = socket(AF_UNIX, SOCK_DGRAM, 0);
13 unsigned int z;
14 int res = ioctl(fd, FIOGETOWN, &z);
15 assert(res == 0);
16 close(fd);
17 if (z)
18 exit(0);
19 return 0;