Retro68/gcc/libgomp/testsuite/libgomp.oacc-c-c++-common/abort-3.c

20 lines
234 B
C
Raw Normal View History

2015-08-28 15:33:40 +00:00
/* { dg-do run } */
2017-04-10 11:32:00 +00:00
#include <stdio.h>
2015-08-28 15:33:40 +00:00
#include <stdlib.h>
int
main (void)
{
2017-04-10 11:32:00 +00:00
fprintf (stderr, "CheCKpOInT\n");
2015-08-28 15:33:40 +00:00
#pragma acc kernels
{
abort ();
}
return 0;
}
2017-04-10 11:32:00 +00:00
/* { dg-output "CheCKpOInT" } */
/* { dg-shouldfail "" } */