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

20 lines
396 B
C
Raw Normal View History

2017-04-10 11:32:00 +00:00
/* Expect error message when shutting down a device that has never been
initialized. */
/* { dg-do run } */
#include <stdio.h>
#include <openacc.h>
int
main (int argc, char **argv)
{
fprintf (stderr, "CheCKpOInT\n");
acc_shutdown (acc_device_default);
return 0;
}
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
/* { dg-output "no device initialized" } */
/* { dg-shouldfail "" } */