2015-08-28 15:33:40 +00:00
|
|
|
/* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
|
|
|
|
|
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[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#pragma acc data present_or_copy (i)
|
2017-04-10 11:32:00 +00:00
|
|
|
{
|
|
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
|
|
acc_copyin (&i, sizeof i);
|
|
|
|
}
|
2015-08-28 15:33:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-10 11:32:00 +00:00
|
|
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
|
|
|
|
/* { dg-output "already mapped to" } */
|
|
|
|
/* { dg-shouldfail "" } */
|