1 // Copyright (c) Microsoft. All rights reserved. 2 // Licensed under the MIT license. See LICENSE file in the project root for 3 // full license information. 4 5 #include <windows.h> 6 #include "seh.h" 7 8 #define faill() 9 #define startest() 10 #define finish() 11 12 char test[] = "SEH0035.c"; 13 int perfect; 14 15 int main() { 16 ULONG Index1; 17 LONG Counter; 18 19 Counter = 0; 20 21 for (Index1 = 0; Index1 < 10; Index1 += 1) { 22 try { 23 try { 24 if ((Index1 & 0x1) == 0) { 25 /* add 1 to counter if INdex1 is odd */ 26 Counter += 1; 27 } 28 } 29 finally { 30 /* always add 2 to counter */ 31 Counter += 2; 32 #if defined(_MSC_VER) && !defined(__clang__) 33 continue; 34 #endif 35 } 36 endtry 37 /* never get here due to continue */ 38 Counter += 4; 39 } 40 finally { 41 /* always add 5 to counter */ 42 Counter += 5; 43 } 44 endtry 45 /* never get here due to continue */ 46 Counter += 6; 47 } 48 49 if (Counter != 75) { 50 printf("TEST 35 FAILED. Counter = %d\n\r", Counter); 51 return -1; 52 } 53 54 return 0; 55 } 56