/* { dg-do run } */ #include #include #include 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"); acc_delete (h, 0); free (h); return 0; } /* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */ /* { dg-output "\\\[\[0-9a-fA-FxX\]+,0\\\] is not mapped" } */ /* { dg-shouldfail "" } */