[PR testsuite/65205, libgomp/65993] Fix dg-shouldfail usage in OpenACC libgomp tests
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-c-c++-common / lib-35.c
blobfc9013630d53b67a25b25d9cd07973036f5c4c67
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_present_or_create (0, N);
16 if (!d)
17 abort ();
19 acc_delete (h, N);
21 free (h);
23 return 0;
26 /* { dg-output "\\\[\[^\n\r]*,\\\+256\\\] is a bad range" } */
27 /* { dg-shouldfail "" } */