[COMPILER_APITEST] Add SEH tests from MS (#2435)
[reactos.git] / modules / rostests / apitests / compiler / ms / seh / seh0055.c
diff --git a/modules/rostests/apitests/compiler/ms/seh/seh0055.c b/modules/rostests/apitests/compiler/ms/seh/seh0055.c
new file mode 100644 (file)
index 0000000..af5545a
--- /dev/null
@@ -0,0 +1,51 @@
+// 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[] = "seh0055.c";
+int perfect;
+
+LONG Echo(LONG Value) { return Value; }
+
+int main() {
+  LONG Counter;
+
+  Counter = 0;
+
+  try {
+    try {
+      if (Echo(Counter) == Counter) {
+        Counter += 3;
+        leave;
+
+      } else {
+        Counter += 100;
+      }
+    }
+    finally {
+      if (abnormal_termination() == FALSE) {
+        Counter += 5;
+        leave;
+      }
+    }
+    endtry
+
+    Counter += 100;
+  }
+  finally {
+    if (abnormal_termination() == FALSE) {
+      Counter += 5;
+    }
+  }
+  endtry
+
+  if (Counter != 13) {
+    printf("TEST 55 FAILED, Counter = %d\n", Counter);
+    return -1;
+  }
+
+  return 0;
+}