diff options
| author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-07-18 20:16:25 +0000 |
|---|---|---|
| committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-07-18 20:16:25 +0000 |
| commit | 1c50ee64a2904639c2c28ea31aadb2e4646d4feb (patch) | |
| tree | d3b50274972bfb19d8ceaa96ca80b486a2b4374a | |
| parent | d839749ae8d6a69a650eca2e53842921c679f30d (diff) | |
| download | bcm5719-llvm-1c50ee64a2904639c2c28ea31aadb2e4646d4feb.tar.gz bcm5719-llvm-1c50ee64a2904639c2c28ea31aadb2e4646d4feb.zip | |
Fix failing taskloop tests by omitting gcc
We do not have GOMP interface support for taskloop yet.
llvm-svn: 308351
| -rw-r--r-- | openmp/runtime/test/tasking/omp_taskloop_grainsize.c | 2 | ||||
| -rw-r--r-- | openmp/runtime/test/tasking/omp_taskloop_num_tasks.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/openmp/runtime/test/tasking/omp_taskloop_grainsize.c b/openmp/runtime/test/tasking/omp_taskloop_grainsize.c index ab5001d5c0f..d8516ac9e3f 100644 --- a/openmp/runtime/test/tasking/omp_taskloop_grainsize.c +++ b/openmp/runtime/test/tasking/omp_taskloop_grainsize.c @@ -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 diff --git a/openmp/runtime/test/tasking/omp_taskloop_num_tasks.c b/openmp/runtime/test/tasking/omp_taskloop_num_tasks.c index 2a932e3668a..ba464605ed6 100644 --- a/openmp/runtime/test/tasking/omp_taskloop_num_tasks.c +++ b/openmp/runtime/test/tasking/omp_taskloop_num_tasks.c @@ -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 |

