forked from OSchip/llvm-project
Disabling some MS extensions which cause these tests to fail
llvm-svn: 85236
This commit is contained in:
parent
d90d169f9d
commit
ec87bb5c46
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang-cc -fsyntax-only -verify %s
|
||||
// RUN: clang-cc -fsyntax-only -verify -fms-extensions=0 %s
|
||||
|
||||
// Errors
|
||||
export class foo { }; // expected-error {{expected template}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang-cc -fsyntax-only -verify -pedantic %s &&
|
||||
// RUN: clang-cc -fsyntax-only -verify -pedantic -fms-extensions=0 %s &&
|
||||
// RUN: clang-cc -E %s 2>&1 | grep 'blonk.c:92:2: error: #error ABC' &&
|
||||
// RUN: clang-cc -E %s 2>&1 | grep 'blonk.c:93:2: error: #error DEF'
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang-cc -fsyntax-only -verify %s
|
||||
// RUN: clang-cc -fsyntax-only -verify -fms-extensions=0 %s
|
||||
|
||||
x; // expected-error{{C++ requires a type specifier for all declarations}}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang-cc -fsyntax-only -std=c++98 -verify %s
|
||||
// RUN: clang-cc -fsyntax-only -std=c++98 -verify -fms-extensions=0 %s
|
||||
namespace A {
|
||||
struct C {
|
||||
static int cx;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: clang-cc -fsyntax-only -verify %s
|
||||
// RUN: clang-cc -fsyntax-only -verify -fms-extensions=0 %s
|
||||
|
||||
namespace N {
|
||||
namespace M {
|
||||
|
|
Loading…
Reference in New Issue