Skip to content

Commit 049e33b

Browse files
barcharcrazCharlie Barto
authored andcommitted
MSVC -> msvc
1 parent 6642735 commit 049e33b

33 files changed

+33
-33
lines changed

compiler-rt/test/asan/TestCases/Windows/coverage-basic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %env_asan_opts=coverage=1 %run ./test.exe
55
//
66
// RUN: %sancov print *.sancov | FileCheck %s
7-
// XFAIL: MSVC
7+
// XFAIL: msvc
88

99
#include <stdio.h>
1010

compiler-rt/test/asan/TestCases/Windows/dll_stack_use_after_return.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: %env_asan_opts=detect_stack_use_after_return=1 not %run %t %t.dll 2>&1 | FileCheck %s
44
// RUN: %clang_cl_asan %LD %Od %s %Fe%t.dll -fsanitize-address-use-after-return=always
55
// RUN: not %run %t %t.dll 2>&1 | FileCheck %s
6-
// UNSUPPORTED: MSVC
6+
// UNSUPPORTED: msvc
77

88
#include <malloc.h>
99

compiler-rt/test/asan/TestCases/Windows/illegal_instruction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clang_cl_asan %Od %s %Fe%t
22
// RUN: %env_asan_opts=handle_sigill=1 not %run %t 2>&1 | FileCheck %s
33
// msvc doesn't have a __builtin_trap equivalent
4-
// XFAIL: MSVC
4+
// XFAIL: msvc
55

66
// Test the error output from an illegal instruction.
77

compiler-rt/test/asan/TestCases/Windows/sse_misalignment.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// FIXME: On MinGW frame #0 does not include the line number?
55
// XFAIL: target={{.*-windows-gnu}}
6-
// XFAIL: MSVC
6+
// XFAIL: msvc
77

88
// Test the error output from misaligned SSE2 memory access. This is a READ
99
// memory access. Windows appears to always provide an address of -1 for these

compiler-rt/test/asan/TestCases/Windows/stack_use_after_return.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// RUN: %clang_cl_asan %Od %s %Fe%t -fsanitize-address-use-after-return=always
55
// RUN: not %run %t 2>&1 | FileCheck %s
6-
// XFAIL: MSVC
6+
// XFAIL: msvc
77
char *x;
88

99
void foo() {

compiler-rt/test/asan/TestCases/alloca_big_alignment.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
22
// RUN: not %run %t 2>&1 | FileCheck %s
33
//
4-
// XFAIL: MSVC
4+
// XFAIL: msvc
55

66
#include "defines.h"
77
#include <assert.h>

compiler-rt/test/asan/TestCases/alloca_instruments_all_paddings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: %clangxx_asan -O3 -mllvm -asan-instrument-dynamic-allocas %s -o %t
33
// RUN: %run %t 2>&1
44
//
5-
// UNSUPPORTED: MSVC
5+
// UNSUPPORTED: msvc
66

77
#include "sanitizer/asan_interface.h"
88
#include <assert.h>

compiler-rt/test/asan/TestCases/alloca_loop_unpoisoning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// REQUIRES: stable-runtime
55

66
// This testcase checks that allocas and VLAs inside loop are correctly unpoisoned.
7-
// UNSUPPORTED: MSVC
7+
// UNSUPPORTED: msvc
88

99
#include "defines.h"
1010
#include "sanitizer/asan_interface.h"

compiler-rt/test/asan/TestCases/alloca_overflow_partial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
22
// RUN: not %run %t 2>&1 | FileCheck %s
33
//
4-
// UNSUPPORTED: MSVC
4+
// UNSUPPORTED: msvc
55

66
#include <assert.h>
77
#include <stdint.h>

compiler-rt/test/asan/TestCases/alloca_overflow_right.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t
22
// RUN: not %run %t 2>&1 | FileCheck %s
33
//
4-
// UNSUPPORTED: MSVC
4+
// UNSUPPORTED: msvc
55

66
#include <assert.h>
77
#include <stdint.h>

0 commit comments

Comments
 (0)