// RUN: %clangxx_msan -O0 %s -o %t && %run %t %p #include #include #include #include #include #include int main(int argc, char *argv[]) { int fd = getpt(); assert(fd >= 0); struct termios t; int res = tcgetattr(fd, &t); assert(!res); if (t.c_iflag == 0) exit(0); return 0; }