[Openmp-commits] [openmp] r277996 - Mark tests with task dependencies as unsupported with GCC

Jonas Hahnfeld via Openmp-commits openmp-commits at lists.llvm.org
Mon Aug 8 04:52:49 PDT 2016


Author: hahnfeld
Date: Mon Aug  8 06:52:49 2016
New Revision: 277996

URL: http://llvm.org/viewvc/llvm-project?rev=277996&view=rev
Log:
Mark tests with task dependencies as unsupported with GCC

Modified:
    openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c
    openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c

Modified: openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c?rev=277996&r1=277995&r2=277996&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c (original)
+++ openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c Mon Aug  8 06:52:49 2016
@@ -1,4 +1,7 @@
 // RUN: %libomp-compile -lpthread && %libomp-run
+// The runtime currently does not get dependency information from GCC.
+// UNSUPPORTED: gcc
+
 #include <stdio.h>
 #include <omp.h>
 #include <pthread.h>

Modified: openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c?rev=277996&r1=277995&r2=277996&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c (original)
+++ openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c Mon Aug  8 06:52:49 2016
@@ -1,4 +1,7 @@
 // RUN: %libomp-compile -lpthread && %libomp-run
+// The runtime currently does not get dependency information from GCC.
+// UNSUPPORTED: gcc
+
 #include <stdio.h>
 #include <omp.h>
 #include <pthread.h>




More information about the Openmp-commits mailing list