Commit 8e5c11b9 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Enable more exception tests on ARM platforms.

parent 94ca95a6
...@@ -639,6 +639,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext ) ...@@ -639,6 +639,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
case TRAP_BRKPT: case TRAP_BRKPT:
default: default:
rec.ExceptionCode = EXCEPTION_BREAKPOINT; rec.ExceptionCode = EXCEPTION_BREAKPOINT;
rec.NumberParameters = 1;
break; break;
} }
setup_exception( sigcontext, &rec ); setup_exception( sigcontext, &rec );
......
...@@ -648,6 +648,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext ) ...@@ -648,6 +648,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
case TRAP_BRKPT: case TRAP_BRKPT:
default: default:
rec.ExceptionCode = EXCEPTION_BREAKPOINT; rec.ExceptionCode = EXCEPTION_BREAKPOINT;
rec.NumberParameters = 1;
break; break;
} }
setup_exception( sigcontext, &rec ); setup_exception( sigcontext, &rec );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment