summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/msan/Linux/tcgetattr.cpp
blob: 454b7fd1537e9305a0a36a5f0c9043c300c703d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clangxx_msan -O0 %s -o %t && %run %t %p

#include <assert.h>
#include <glob.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>

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;
}
OpenPOWER on IntegriCloud