diff options
Diffstat (limited to 'test/cfi')
-rw-r--r-- | test/cfi/bad-split.cpp | 2 | ||||
-rw-r--r-- | test/cfi/cross-dso-diagnostic.cpp | 2 | ||||
-rw-r--r-- | test/cfi/mfcall.cpp | 2 | ||||
-rw-r--r-- | test/cfi/target_uninstrumented.cpp | 2 | ||||
-rw-r--r-- | test/cfi/two-vcalls.cpp | 2 |
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. |