libgomp: libgomp.oacc-c-c++-common/lib-62.c is for acc_device_nvidia only
authorThomas Schwinge <thomas@codesourcery.com>
Fri, 19 Jun 2015 07:41:44 +0000 (09:41 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Fri, 19 Jun 2015 07:41:44 +0000 (09:41 +0200)
libgomp/
* testsuite/libgomp.oacc-c-c++-common/lib-62.c: Only consider for
acc_device_nvidia.

From-SVN: r224640

libgomp/ChangeLog
libgomp/testsuite/libgomp.oacc-c-c++-common/lib-62.c

index d49b0564a3f37abaff9bc0483afad4d555677c6d..cf1a0b0d5a4a8ff3c53e92254dfc82e710caed52 100644 (file)
@@ -1,5 +1,8 @@
 2015-06-19  Thomas Schwinge  <thomas@codesourcery.com>
 
+       * testsuite/libgomp.oacc-c-c++-common/lib-62.c: Only consider for
+       acc_device_nvidia.
+
        PR libgomp/66518
        * testsuite/libgomp.oacc-c-c++-common/lib-3.c: XFAIL.
        * testsuite/libgomp.oacc-c-c++-common/lib-42.c: Likewise.
index 47dc953c69c7f7d688c656b792dfa902fca7efc7..2988b5bcd0ab3f5848bb0d2263995e76d7ff0ecd 100644 (file)
@@ -1,4 +1,4 @@
-/* { dg-do run } */
+/* { dg-do run { target openacc_nvidia_accel_selected } } */
 
 #include <string.h>
 #include <stdlib.h>
@@ -12,8 +12,6 @@ main (int argc, char **argv)
   unsigned char *h;
   void *d;
 
-  acc_init (acc_device_nvidia);
-
   h = (unsigned char *) malloc (N);
 
   for (i = 0; i < N; i++)
@@ -41,8 +39,6 @@ main (int argc, char **argv)
 
   free (h);
 
-  acc_shutdown (acc_device_nvidia);
-
   return 0;
 }