[PR testsuite/65205, libgomp/65993] Fix dg-shouldfail usage in OpenACC libgomp tests
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-29.c
blobda01194fa4172e34f63704909268199d1030d604
1 /* { dg-do run } */
3 #include <stdlib.h>
4 #include <openacc.h>
6 int
7 main (int argc, char **argv)
9 const int N = 256;
10 unsigned char *h;
11 void *d;
13 h = (unsigned char *) malloc (N);
15 d = acc_create (h, N);
16 if (!d)
17 abort ();
19 acc_delete (h, 0);
21 free (h);
23 return 0;
26 /* { dg-output "\\\[\[0-9a-fA-FxX\]+,0\\\] is not mapped" } */
27 /* { dg-shouldfail "" } */