xref: /petsc/src/dm/impls/forest/p4est/tests/ex1.c (revision ebead697dbf761eb322f829370bbe90b3bd93fa3)
1 #include "../src/dm/impls/forest/p4est/petsc_p4est_package.h"
2 
3 static char help[] = "Test interaction with p4est/libsc error and logging routines\n";
4 
5 int main(int argc, char **argv)
6 {
7 
8   PetscFunctionBeginUser;
9   PetscCall(PetscInitialize(&argc,&argv,NULL,help));
10   PetscCall(PetscP4estInitialize());
11   PetscCallP4est(sc_abort_verbose,(__FILE__,__LINE__,"Abort in main()\n"));
12   PetscCall(PetscFinalize());
13   return 0;
14 }
15