[COMPILER_APITEST] Add SEH tests from MS (#2435)
[reactos.git] / modules / rostests / apitests / compiler / ms / seh / seh0048.c
diff --git a/modules/rostests/apitests/compiler/ms/seh/seh0048.c b/modules/rostests/apitests/compiler/ms/seh/seh0048.c
new file mode 100644 (file)
index 0000000..5b95ef1
--- /dev/null
@@ -0,0 +1,52 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for
+// full license information.
+
+#include <windows.h>
+#include "seh.h"
+
+char test[] = "SEH0048.c";
+int perfect;
+
+int main() {
+  ULONG Index1;
+  ULONG Index2 = 1;
+  LONG Counter;
+
+  Counter = 0;
+  Index1 = 1;
+
+  switch (Index2) {
+  case 0:
+    /* never gets here, Index2 is 2 */
+    Counter += 100;
+    break;
+  case 1:
+    try {
+      if ((Index1 & 0x1) == 1) {
+        /* set counter to 1 */
+        Counter += 1;
+      }
+    }
+    finally {
+      /* ste counter to 3 and rbeak out of switch */
+      Counter += 2;
+#if defined(_MSC_VER) && !defined(__clang__)
+      break;
+#endif
+    }
+    endtry
+#ifndef _MSC_VER
+    break;
+#endif
+    /* never gets here due to break */
+    Counter += 4;
+  }
+
+  if (Counter != 3) {
+    printf("TEST 48 FAILED. Counter = %d\n\r", Counter);
+    return -1;
+  }
+
+  return 0;
+}