diff options
author | Petr Hosek <phosek@chromium.org> | 2018-08-09 02:16:18 +0000 |
---|---|---|
committer | Petr Hosek <phosek@chromium.org> | 2018-08-09 02:16:18 +0000 |
commit | eb46c95c3e7aeba4d183ca614fe238067eddf97f (patch) | |
tree | bb2fec1f44eedc0e9ce644c153642732ae543cea /compiler-rt/test/asan/TestCases/printf-m.c | |
parent | 89d9cc7da964273b7f6e7656ad22bd67eb4a09ba (diff) | |
download | bcm5719-llvm-eb46c95c3e7aeba4d183ca614fe238067eddf97f.tar.gz bcm5719-llvm-eb46c95c3e7aeba4d183ca614fe238067eddf97f.zip |
[CMake] Use normalized Windows target triples
Changes the default Windows target triple returned by
GetHostTriple.cmake from the old environment names (which we wanted to
move away from) to newer, normalized ones. This also requires updating
all tests to use the new systems names in constraints.
Differential Revision: https://reviews.llvm.org/D47381
llvm-svn: 339307
Diffstat (limited to 'compiler-rt/test/asan/TestCases/printf-m.c')
-rw-r--r-- | compiler-rt/test/asan/TestCases/printf-m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/asan/TestCases/printf-m.c b/compiler-rt/test/asan/TestCases/printf-m.c index 9cd5ae1c288..3998a6956f7 100644 --- a/compiler-rt/test/asan/TestCases/printf-m.c +++ b/compiler-rt/test/asan/TestCases/printf-m.c @@ -1,7 +1,7 @@ // RUN: %clang_asan -O2 %s -o %t && %run %t // FIXME: printf is not intercepted on Windows yet. -// UNSUPPORTED: win32 +// UNSUPPORTED: windows-msvc #include <stdio.h> |