PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-fortran / lib-6.f90
blob0364a7be842805d5a7e8e0d095a54975f5221589
1 ! { dg-do run }
3 program main
4 implicit none
5 include "openacc_lib.h"
7 integer n
9 if (acc_get_num_devices (acc_device_host) .ne. 1) STOP 1
11 if (acc_get_num_devices (acc_device_none) .ne. 0) STOP 2
13 call acc_init (acc_device_host)
15 if (acc_get_device_type () .ne. acc_device_host) STOP 3
17 call acc_set_device_type (acc_device_host)
19 if (acc_get_device_type () .ne. acc_device_host) STOP 4
21 n = 0
23 call acc_set_device_num (n, acc_device_host)
25 if (acc_get_device_num (acc_device_host) .ne. 0) STOP 5
27 if (.NOT. acc_async_test (n) ) STOP 6
29 call acc_wait (n)
31 call acc_wait_all ()
33 call acc_shutdown (acc_device_host)
35 end program