reactos/modules/rostests/apitests/compiler/ms/seh/seh0011.c
Timo Kreuzer fe36f081c7
[COMPILER_APITEST] Add SEH tests from MS (#2435)
* [COMPILER_APITEST] Import MS EH/SEH tests

Taken from https://github.com/microsoft/compiler-tests

* [CRT] Add missing declaration of _longjmpex

* [COMPILER_APITEST] Add cmake build files for MS SEH test

It is built as a static library

* [COMPILER_APITEST] Fix GCC build of MS SEH tests

There are a number of hacks in there now. Also the volatile hacks should be separated and sent upstream.

* [COMPILER_APITEST] Fix x64 build of MS SEH tests

* [COMPILER_APITEST] Fix clang build of MS SEH tests

* [COMPILER_APITEST] Include MS SEH tests
2020-10-31 11:08:27 +01:00

65 lines
1.2 KiB
C

// 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[] = "SEH0011.c";
int perfect;
void AccessViolation(PLONG BlackHole, PLONG BadAddress) {
*BlackHole += *BadAddress;
return;
}
void tfAccessViolation(PLONG BlackHole, PLONG BadAddress, PLONG Counter) {
try {
AccessViolation(BlackHole, BadAddress);
}
finally {
if (abnormal_termination() != 0)
/*
* not abnormal termination
* counter should equal 99
*/
{
*Counter = 99;
} else {
*Counter = 100;
}
} endtry
return;
}
int main() {
PLONG BadAddress;
PLONG BlackHole;
LONG Counter;
BadAddress = (PLONG)((PVOID)0);
BlackHole = &Counter;
Counter = 0;
try {
tfAccessViolation(BlackHole, BadAddress, &Counter);
}
except((GetExceptionCode() == STATUS_ACCESS_VIOLATION) ? 1 : 0)
/*
* acception raised was 0xC00000005L (ACCESS VIOLATION)
* execute handler
*/
{
Counter -= 1;
}
endtry
if (Counter != 98) {
printf("TEST 11 FAILED. Counter = %d\n\r", Counter);
return -1;
}
return 0;
}