Skip to content

Commit 58cd314

Browse files
committed
MSVC -> msvc
1 parent cd17d5d commit 58cd314

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>

compiler-rt/test/asan/TestCases/alloca_safe_access.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: %run %t 2>&1
33
//
4-
// UNSUPPORTED: MSVC
4+
// UNSUPPORTED: msvc
55

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

compiler-rt/test/asan/TestCases/alloca_underflow_left.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_vla_interact.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// XFAIL: target=sparc{{.*}}
88

99
// This testcase checks correct interaction between VLAs and allocas.
10-
// UNSUPPORTED: MSVC
10+
// UNSUPPORTED: msvc
1111

1212
#include <assert.h>
1313
#include <stdint.h>

compiler-rt/test/asan/TestCases/coverage-trace-pc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: %clangxx_asan -O0 -DTRACE_RT %s -o %t-rt.o -c
33
// RUN: %clangxx_asan -O0 -fsanitize-coverage=edge,trace-pc,indirect-calls %s -o %t %t-rt.o
44
// RUN: %run %t
5-
// XFAIL: MSVC
5+
// XFAIL: msvc
66

77
#ifdef TRACE_RT
88
int pc_count;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// that it correctly finds out which region (and name and size) the address
44
// belongs to.
55
// RUN: %clangxx_asan -O0 %s -o %t && %run %t 2>&1
6-
// UNSUPPORTED: MSVC
6+
// UNSUPPORTED: msvc
77
#include <assert.h>
88
#include <sanitizer/asan_interface.h>
99
#include <stdio.h>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316
2-
// XFAIL: android, MSVC
2+
// XFAIL: android, msvc
33
// UNSUPPORTED: ios
44
//
55
// Test that ASan uses the default ignorelist from resource directory.

compiler-rt/test/asan/TestCases/global-location-nodebug.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/// Solaris ld -S has different semantics, so enforce -fuse-ld= for
1212
/// configurations that default to GNU ld.
1313
// XFAIL: target={{.*solaris.*}}
14-
// XFAIL: MSVC
14+
// XFAIL: msvc
1515
// CHECK: AddressSanitizer: global-buffer-overflow
1616
// CLASS_STATIC-NO-G: 0x{{.*}} is located 4 bytes after global variable '{{.*}}C::array{{.*}}' defined in '{{.*}}global-location.cpp' {{.*}} of size 40
1717
// GLOB-NO-G: 0x{{.*}} is located 4 bytes after global variable '{{.*}}global{{.*}}' defined in '{{.*}}global-location.cpp' {{.*}} of size 40

compiler-rt/test/asan/TestCases/global-underflow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// XFAIL: MSVC
1+
// XFAIL: msvc
22
// RUN: %clangxx_asan -O0 %s %p/Helpers/underflow.cpp -o %t && not %run %t 2>&1 | FileCheck %s
33
// RUN: %clangxx_asan -O1 %s %p/Helpers/underflow.cpp -o %t && not %run %t 2>&1 | FileCheck %s
44
// RUN: %clangxx_asan -O2 %s %p/Helpers/underflow.cpp -o %t && not %run %t 2>&1 | FileCheck %s

compiler-rt/test/asan/TestCases/halt_on_error-1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: env not %run %t 2>&1 | FileCheck %s
66
// RUN: %env_asan_opts=halt_on_error=true not %run %t 2>&1 | FileCheck %s
77
// RUN: %env_asan_opts=halt_on_error=false %run %t 2>&1 | FileCheck %s --check-prefix CHECK-RECOVER
8-
// XFAIL: MSVC
8+
// XFAIL: msvc
99
#include <string.h>
1010

1111
volatile int ten = 10;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// it to make sure memory past the end of badGlobal will be in
1717
// the same page.
1818

19-
// XFAIL: MSVC
19+
// XFAIL: msvc
2020
#include "defines.h"
2121
ATTRIBUTE_ALIGNED(16) int badGlobal;
2222
int readBadGlobal() {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Test that no_sanitize_address attribute applies even when the function would
44
// be normally inlined.
55
//
6-
// XFAIL: MSVC
6+
// XFAIL: msvc
77
// ^ MSVC has this bug
88

99
#include "defines.h"

compiler-rt/test/asan/TestCases/invalid-pointer-pairs-compare-errors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -O0 %s -o %t -mllvm -asan-detect-invalid-pointer-pair
22

33
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=2:halt_on_error=0 %run %t 2>&1 | FileCheck %s
4-
// XFAIL: MSVC
4+
// XFAIL: msvc
55
#include <assert.h>
66
#include <stdlib.h>
77

compiler-rt/test/asan/TestCases/invalid-pointer-pairs-subtract-errors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -O0 %s -o %t -mllvm -asan-detect-invalid-pointer-pair
22

33
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=2:halt_on_error=0 %run %t 2>&1 | FileCheck %s
4-
// XFAIL: MSVC
4+
// XFAIL: msvc
55
#include <assert.h>
66
#include <stdlib.h>
77

compiler-rt/test/asan/TestCases/invalid-pointer-pairs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=1 not %run %t g 2>&1 | FileCheck %s -check-prefix=CMP -check-prefix=ALL-ERRORS
55
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=1 not %run %t s 2>&1 | FileCheck %s -check-prefix=SUB -check-prefix=ALL-ERRORS
66
// RUN: %env_asan_opts=detect_invalid_pointer_pairs=1 not %run %t f 2>&1 | FileCheck %s -check-prefix=FREE -check-prefix=ALL-ERRORS
7-
// XFAIL: MSVC
7+
// XFAIL: msvc
88
#include <assert.h>
99
#include <stdlib.h>
1010

compiler-rt/test/asan/TestCases/pass-struct-byval.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: %clangxx_asan -O0 %s -o %t
22
// RUN: not %run %t 2>&1 | FileCheck %s
3-
// XFAIL: MSVC
3+
// XFAIL: msvc
44
struct A {
55
int a[8];
66
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: %clangxx_asan -O1 %s -o %t && %run %t 2>&1
44
// RUN: %clangxx_asan -O2 %s -o %t && %run %t 2>&1
55
// RUN: %clangxx_asan -O3 %s -o %t && %run %t 2>&1
6-
// UNSUPPORTED: MSVC
6+
// UNSUPPORTED: msvc
77

88
#include <sanitizer/asan_interface.h>
99

compiler-rt/test/asan/TestCases/stack-buffer-overflow-with-position.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// RUN: not %run %t 63 2>&1 | FileCheck --check-prefix=CHECK-63 %s
1414
// RUN: not %run %t 73 2>&1 | FileCheck --check-prefix=CHECK-73 %s
1515
// RUN: not %run %t 74 2>&1 | FileCheck --check-prefix=CHECK-74 %s
16-
// XFAIL: MSVC
16+
// XFAIL: msvc
1717
#include <string.h>
1818
#include <stdio.h>
1919
#include <stdlib.h>

compiler-rt/test/asan/TestCases/stack-oob-frames.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RUN: not %run %t 1 2>&1 | FileCheck %s --check-prefix=CHECK1
44
// RUN: not %run %t 2 2>&1 | FileCheck %s --check-prefix=CHECK2
55
// RUN: not %run %t 3 2>&1 | FileCheck %s --check-prefix=CHECK3
6-
// UNSUPPORTED: MSVC
6+
// UNSUPPORTED: msvc
77

88
#define NOINLINE __attribute__((noinline))
99
inline void break_optimization(void *arg) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan %s -o %t && %run %t
22
// http://code.google.com/p/address-sanitizer/issues/detail?id=147 (not fixed).
33
// BROKEN: %clangxx_asan %s -o %t -static-libstdc++ && %run %t
4-
// UNSUPPORTED: MSVC
4+
// UNSUPPORTED: msvc
55

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

compiler-rt/test/asan/TestCases/use-after-scope-inlined.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s
66

77
// MSVC marks this as xfail because it doesn't generate the metadata to display the "x.i" offset.
8-
// XFAIL: MSVC
8+
// XFAIL: msvc
99
#include "defines.h"
1010

1111
int *arr;

compiler-rt/test/asan/TestCases/vla_chrome_testcase.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
// This is reduced testcase based on Chromium code.
77
// See http://reviews.llvm.org/D6055?vs=on&id=15616&whitespace=ignore-all#toc.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: not %run %t 2>&1 | FileCheck %s
33
//
44
// REQUIRES: stable-runtime
5-
// UNSUPPORTED: MSVC
5+
// UNSUPPORTED: msvc
66

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// RUN: not %run %t 2>&1 | FileCheck %s
33
//
44
// REQUIRES: stable-runtime
5-
// UNSUPPORTED: MSVC
5+
// UNSUPPORTED: msvc
66

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

0 commit comments

Comments
 (0)