ecd4fd4382
libgomp/ * testsuite/libgomp.oacc-c-c++-common/lib-1.c: Remove explicit acc_device_nvidia usage. * testsuite/libgomp.oacc-c-c++-common/lib-10.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-2.c: Likewise. * testsuite/libgomp.oacc-c-c++-common/lib-9.c: Likewise. From-SVN: r229381
20 lines
374 B
C
20 lines
374 B
C
/* { dg-do run } */
|
|
|
|
#include <stdio.h>
|
|
#include <openacc.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
acc_init (acc_device_default);
|
|
acc_shutdown (acc_device_default);
|
|
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 "" } */
|