diff options
Diffstat (limited to 'lib/msan/lit_tests/tzset.cc')
-rw-r--r-- | lib/msan/lit_tests/tzset.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/msan/lit_tests/tzset.cc b/lib/msan/lit_tests/tzset.cc deleted file mode 100644 index 7e1c2cfad5666..0000000000000 --- a/lib/msan/lit_tests/tzset.cc +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: %clangxx_msan -m64 -O0 %s -o %t && %t - -#include <stdlib.h> -#include <string.h> -#include <time.h> - -extern char *tzname[2]; - -int main(void) { - if (!strlen(tzname[0]) || !strlen(tzname[1])) - exit(1); - tzset(); - if (!strlen(tzname[0]) || !strlen(tzname[1])) - exit(1); - return 0; -} |