1 // Note: %s must be preceded by --, otherwise it may be interpreted as a 2 // command-line option, e.g. on Mac where %s is commonly under /Users. 3 4 // RUN: %clang_cl /c /EHsc -### -- %s 2>&1 | FileCheck -check-prefix=EHsc %s 5 // EHsc: "-fcxx-exceptions" 6 // EHsc: "-fexceptions" 7 8 // RUN: %clang_cl /c /EHs-c- -### -- %s 2>&1 | FileCheck -check-prefix=EHs_c_ %s 9 // EHs_c_-NOT: "-fcxx-exceptions" 10 // EHs_c_-NOT: "-fexceptions" 11 12 // RUN: %clang_cl /c /EHs- /EHc- -### -- %s 2>&1 | FileCheck -check-prefix=EHs_EHc_ %s 13 // EHs_EHc_-NOT: "-fcxx-exceptions" 14 // EHs_EHc_-NOT: "-fexceptions" 15 16 // RUN: %clang_cl /c /EHs- /EHs -### -- %s 2>&1 | FileCheck -check-prefix=EHs_EHs %s 17 // EHs_EHs: "-fcxx-exceptions" 18 // EHs_EHs: "-fexceptions" 19 20 // RUN: %clang_cl /c /EHs- /EHsa -### -- %s 2>&1 | FileCheck -check-prefix=EHs_EHa %s 21 // EHs_EHa: "-fcxx-exceptions" 22 // EHs_EHa: "-fexceptions" 23 24 // RUN: %clang_cl /c /EHinvalid -### -- %s 2>&1 | FileCheck -check-prefix=EHinvalid %s 25 // EHinvalid: error: invalid value 'invalid' in '/EH' 26 // EHinvalid-NOT: error: 27