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

22 lines
487 B
C
Raw Normal View History

2017-04-10 11:32:00 +00:00
/* Expect an error message when shutting down a device different from the one
that has been initialized. */
/* { dg-do run { target { ! openacc_host_selected } } } */
2015-08-28 15:33:40 +00:00
2017-04-10 11:32:00 +00:00
#include <stdio.h>
2015-08-28 15:33:40 +00:00
#include <openacc.h>
int
main (int argc, char **argv)
{
acc_init (acc_device_host);
2017-04-10 11:32:00 +00:00
fprintf (stderr, "CheCKpOInT\n");
2015-08-28 15:33:40 +00:00
acc_shutdown (acc_device_not_host);
return 0;
}
2017-04-10 11:32:00 +00:00
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
/* { dg-output "no device initialized" } */
/* { dg-shouldfail "" } */