| 32 | /*const*/ Settings settings; |
| 33 | |
| 34 | void run() override { |
| 35 | settings.severity.fill(); |
| 36 | |
| 37 | mNewTemplate = true; |
| 38 | TEST_CASE(destructors); |
| 39 | TEST_CASE(deallocThrow1); |
| 40 | TEST_CASE(deallocThrow2); |
| 41 | TEST_CASE(deallocThrow3); |
| 42 | TEST_CASE(rethrowCopy1); |
| 43 | TEST_CASE(rethrowCopy2); |
| 44 | TEST_CASE(rethrowCopy3); |
| 45 | TEST_CASE(rethrowCopy4); |
| 46 | TEST_CASE(rethrowCopy5); |
| 47 | TEST_CASE(catchExceptionByValue); |
| 48 | TEST_CASE(noexceptThrow); |
| 49 | TEST_CASE(nothrowThrow); |
| 50 | TEST_CASE(unhandledExceptionSpecification1); // #4800 |
| 51 | TEST_CASE(unhandledExceptionSpecification2); |
| 52 | TEST_CASE(unhandledExceptionSpecification3); |
| 53 | TEST_CASE(nothrowAttributeThrow); |
| 54 | TEST_CASE(nothrowAttributeThrow2); // #5703 |
| 55 | TEST_CASE(nothrowDeclspecThrow); |
| 56 | TEST_CASE(rethrowNoCurrentException1); |
| 57 | TEST_CASE(rethrowNoCurrentException2); |
| 58 | TEST_CASE(rethrowNoCurrentException3); |
| 59 | TEST_CASE(noFunctionCall); |
| 60 | TEST_CASE(entryPoint); |
| 61 | } |
| 62 | |
| 63 | struct CheckOptions |
| 64 | { |