20 lines
235 B
C
Raw Normal View History

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