Fold tests for C++ 'main' into a single file.

llvm-svn: 173756
This commit is contained in:
Richard Smith 2013-01-29 02:42:09 +00:00
parent 0e88c7d897
commit e1564ea65b
10 changed files with 78 additions and 54 deletions

View File

@ -0,0 +1,78 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST1
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST2
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST3
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST4
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST5
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST6
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST7
// RUN: %clang_cc1 -fsyntax-only -verify %s -DTEST8
// RUN: cp %s %t
// RUN: %clang_cc1 -x c++ %s -std=c++11 -fsyntax-only -verify -DTEST9
// RUN: not %clang_cc1 -x c++ %t -std=c++11 -fixit -DTEST9
// RUN: %clang_cc1 -x c++ %t -std=c++11 -fsyntax-only -DTEST9
#if TEST1
// expected-no-diagnostics
typedef int Int;
typedef char Char;
typedef Char* Carp;
Int main(Int argc, Carp argv[]) {
}
#elif TEST2
// expected-no-diagnostics
typedef int Int;
typedef char Char;
typedef Char* Carp;
Int main(Int argc, Carp argv[], Char *env[]) {
}
#elif TEST3
// expected-no-diagnostics
int main() {
}
#elif TEST4
static int main() { // expected-error {{'main' is not allowed to be declared static}}
}
#elif TEST5
inline int main() { // expected-error {{'main' is not allowed to be declared inline}}
}
#elif TEST6
void // expected-error {{'main' must return 'int'}}
main( // expected-error {{first parameter of 'main' (argument count) must be of type 'int'}}
float a
) {
}
#elif TEST7
// expected-no-diagnostics
int main(int argc, const char* const* argv) {
}
#elif TEST8
template<typename T>
int main() { } // expected-error{{'main' cannot be a template}}
#elif TEST9
constexpr int main() { } // expected-error{{'main' is not allowed to be declared constexpr}}
#else
#error Unknown test mode
#endif

View File

@ -1,9 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
typedef int Int;
typedef char Char;
typedef Char* Carp;
Int main(Int argc, Carp argv[]) {
}

View File

@ -1,9 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
typedef int Int;
typedef char Char;
typedef Char* Carp;
Int main(Int argc, Carp argv[], Char *env[]) {
}

View File

@ -1,5 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
int main() {
}

View File

@ -1,4 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
static int main() { // expected-error {{'main' is not allowed to be declared static}}
}

View File

@ -1,4 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
inline int main() { // expected-error {{'main' is not allowed to be declared inline}}
}

View File

@ -1,7 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
void // expected-error {{'main' must return 'int'}}
main( // expected-error {{first parameter of 'main' (argument count) must be of type 'int'}}
float a
) {
}

View File

@ -1,5 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
int main(int argc, const char* const* argv) {
}

View File

@ -1,5 +0,0 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
template<typename T>
int main() { } // expected-error{{'main' cannot be a template}}

View File

@ -1,6 +0,0 @@
// RUN: cp %s %t
// RUN: %clang_cc1 -x c++ %s -std=c++11 -fsyntax-only -verify
// RUN: not %clang_cc1 -x c++ %t -std=c++11 -fixit
// RUN: %clang_cc1 -x c++ %t -std=c++11 -fsyntax-only
constexpr int main() { } // expected-error{{'main' is not allowed to be declared constexpr}}