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