[Openmp-commits] [openmp] r308351 - Fix failing taskloop tests by omitting gcc
Jonathan Peyton via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jul 18 13:16:25 PDT 2017
Author: jlpeyton
Date: Tue Jul 18 13:16:25 2017
New Revision: 308351
URL: http://llvm.org/viewvc/llvm-project?rev=308351&view=rev
Log:
Fix failing taskloop tests by omitting gcc
We do not have GOMP interface support for taskloop yet.
Modified:
openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c
openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c
Modified: openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c?rev=308351&r1=308350&r2=308351&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c Tue Jul 18 13:16:25 2017
@@ -1,5 +1,7 @@
// RUN: %libomp-compile-and-run
// RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
+// UNSUPPORTED: gcc
+// We do not yet have the GOMP interface for taskloop
/*
* Test for taskloop
* Method: caculate how many times the iteration space is dispatched
Modified: openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c?rev=308351&r1=308350&r2=308351&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c Tue Jul 18 13:16:25 2017
@@ -1,5 +1,7 @@
// RUN: %libomp-compile-and-run
// RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
+// UNSUPPORTED: gcc
+// We do not yet have the GOMP interface for taskloop
/*
* Test for taskloop
* Method: caculate how many times the iteration space is dispatched
More information about the Openmp-commits
mailing list