Retro68/gcc/libgomp/testsuite/libgomp.oacc-c-c++-common/lib-36.c

31 lines
496 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>
#include <openacc.h>
int
main (int argc, char **argv)
{
const int N = 256;
unsigned char *h;
void *d;
h = (unsigned char *) malloc (N);
2017-04-10 11:32:00 +00:00
fprintf (stderr, "CheCKpOInT\n");
2015-08-28 15:33:40 +00:00
d = acc_present_or_create (h, 0);
if (!d)
abort ();
acc_delete (h, N);
free (h);
return 0;
}
2017-04-10 11:32:00 +00:00
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
/* { dg-output "\\\[\[0-9a-fA-FxX\]+,\\\+0\\\] is a bad range" } */
/* { dg-shouldfail "" } */