35 lines
573 B
C
35 lines
573 B
C
/* { dg-do run } */
|
|
|
|
#include <stdio.h>
|
|
#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 ();
|
|
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
d = acc_create (h, N);
|
|
if (!d)
|
|
abort ();
|
|
|
|
acc_delete (h, N);
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
|
|
/* { dg-output "\\\[\[0-9a-fA-FxX\]+,\\\+256\\\] already mapped to \\\[\[0-9a-fA-FxX\]+,\\\+256\\\]" } */
|
|
/* { dg-shouldfail "" } */
|