mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
52 lines
822 B
C
52 lines
822 B
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[] = "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;
|
||
|
}
|