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

33 lines
583 B
C
Raw Normal View History

/* Exercise acc_delete with a NULL address on nvidia targets. */
/* { dg-do run { target openacc_nvidia_accel_selected } } */
2015-08-28 15:33:40 +00:00
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);
d = acc_create (h, N);
if (!d)
abort ();
2017-04-10 11:32:00 +00:00
fprintf (stderr, "CheCKpOInT\n");
2015-08-28 15:33:40 +00:00
acc_delete (0, N);
free (h);
return 0;
}
2017-04-10 11:32:00 +00:00
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
/* { dg-output "\\\[\[^\n\r]*,256\\\] is not mapped" } */
/* { dg-shouldfail "" } */