mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 14:34:51 +01:00
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
49 lines
789 B
C
49 lines
789 B
C
/* Not all implement this checking.
|
|
{ dg-skip-if "" { openacc_radeon_accel_selected || openacc_host_selected } } */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <openacc.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
const int N = 256;
|
|
int i;
|
|
unsigned char *h;
|
|
void *d;
|
|
|
|
h = (unsigned char *) malloc (N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
h[i] = i;
|
|
}
|
|
|
|
d = acc_malloc (N);
|
|
|
|
fprintf (stderr, "CheCKpOInT\n");
|
|
acc_memcpy_to_device (d, d, N);
|
|
|
|
memset (&h[0], 0, N);
|
|
|
|
acc_memcpy_from_device (h, d, N);
|
|
|
|
for (i = 0; i < N; i++)
|
|
{
|
|
if (h[i] != i)
|
|
abort ();
|
|
}
|
|
|
|
acc_free (d);
|
|
|
|
free (h);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
|
|
/* { dg-output "invalid host or device address" } */
|
|
/* { dg-shouldfail "" } */
|