summaryrefslogtreecommitdiff
path: root/test/cfi
diff options
context:
space:
mode:
authorPetr Hosek <phosek@chromium.org>2018-08-09 02:16:18 +0000
committerPetr Hosek <phosek@chromium.org>2018-08-09 02:16:18 +0000
commit296e6e1b2323087bec77661b66168713e7e58ed1 (patch)
tree50f70bd7f3b1e68904c95764f633b6ef3104948d /test/cfi
parent65f4b1797fb2972bbb40079d83365adbc0b892ac (diff)
downloadcompiler-rt-296e6e1b2323087bec77661b66168713e7e58ed1.tar.gz
[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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@339307 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/cfi')
-rw-r--r--test/cfi/bad-split.cpp2
-rw-r--r--test/cfi/cross-dso-diagnostic.cpp2
-rw-r--r--test/cfi/mfcall.cpp2
-rw-r--r--test/cfi/target_uninstrumented.cpp2
-rw-r--r--test/cfi/two-vcalls.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/cfi/bad-split.cpp b/test/cfi/bad-split.cpp
index 37e635aef..dbbd7ecef 100644
--- a/test/cfi/bad-split.cpp
+++ b/test/cfi/bad-split.cpp
@@ -1,7 +1,7 @@
// GlobalSplit used to lose type metadata for classes with virtual bases but no virtual methods.
// RUN: %clangxx_cfi -o %t1 %s && %run %t1
-// UNSUPPORTED: win32
+// UNSUPPORTED: windows-msvc
struct Z {
};
diff --git a/test/cfi/cross-dso-diagnostic.cpp b/test/cfi/cross-dso-diagnostic.cpp
index f3782dae0..b8a887227 100644
--- a/test/cfi/cross-dso-diagnostic.cpp
+++ b/test/cfi/cross-dso-diagnostic.cpp
@@ -4,7 +4,7 @@
// RUN: %clangxx_cfi_diag -g -o %t_exe_suffix %s %ld_flags_rpath_exe
// RUN: %t_exe_suffix 2>&1 | FileCheck -DDSONAME=%xdynamiclib_namespec %s
-// UNSUPPORTED: win32
+// UNSUPPORTED: windows-msvc
// REQUIRES: cxxabi
#include <dlfcn.h>
diff --git a/test/cfi/mfcall.cpp b/test/cfi/mfcall.cpp
index 6e22e3f3d..4d561d943 100644
--- a/test/cfi/mfcall.cpp
+++ b/test/cfi/mfcall.cpp
@@ -1,4 +1,4 @@
-// UNSUPPORTED: win32
+// UNSUPPORTED: windows-msvc
// RUN: %clangxx_cfi -o %t %s
// RUN: %expect_crash %run %t a
diff --git a/test/cfi/target_uninstrumented.cpp b/test/cfi/target_uninstrumented.cpp
index 6379b7e12..c2db9d609 100644
--- a/test/cfi/target_uninstrumented.cpp
+++ b/test/cfi/target_uninstrumented.cpp
@@ -3,7 +3,7 @@
// RUN: %run %t 2>&1 | FileCheck %s
// REQUIRES: cxxabi
-// UNSUPPORTED: win32
+// UNSUPPORTED: windows-msvc
#include <stdio.h>
#include <string.h>
diff --git a/test/cfi/two-vcalls.cpp b/test/cfi/two-vcalls.cpp
index fbe4d971a..ff823c498 100644
--- a/test/cfi/two-vcalls.cpp
+++ b/test/cfi/two-vcalls.cpp
@@ -4,7 +4,7 @@
// This test checks that we don't generate two type checks,
// if two virtual calls are in the same function.
-// UNSUPPORTED: win32
+// UNSUPPORTED: windows-msvc
// REQUIRES: cxxabi
// TODO(krasin): implement the optimization to not emit two type checks.