blob: 9cd8df19c44f55fadc31fe8f801189a1190bb960 [file] [log] [blame]
/* Test custom exception handlers */
/* Author: David Ayers */
#include <objc/objc-api.h>
#include <objc/Object.h>
#include <stdio.h>
#include <stdlib.h>
static unsigned int handlerExpected = 0;
void
my_exception_handler(id excp)
{
/* Returning from the handler would abort. */
if (handlerExpected)
exit(0);
abort();
}
int
main(int argc, char *argv[])
{
_objc_unexpected_exception = my_exception_handler;
@try
{
@throw [Object new];
}
@catch (id exc)
{
handlerExpected = 1;
}
@throw [Object new];
abort();
return 0;
}