[Openmp-commits] [openmp] r366341 - Remove REQUIRES OMP spec version within lit tests

Jonathan Peyton via Openmp-commits openmp-commits at lists.llvm.org
Wed Jul 17 08:41:00 PDT 2019


Author: jlpeyton
Date: Wed Jul 17 08:41:00 2019
New Revision: 366341

URL: http://llvm.org/viewvc/llvm-project?rev=366341&view=rev
Log:
Remove REQUIRES OMP spec version within lit tests

This is a follow up patch to D64534 (r365963) which removed all OMP
spec versioning within the OpenMP runtime codebase.  This patch removes
REQUIRES: openmp-x.y lines from lit tests.

Modified:
    openmp/trunk/runtime/test/affinity/bug-nested.c
    openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c
    openmp/trunk/runtime/test/tasking/bug_proxy_task_dep_waiting.c
    openmp/trunk/runtime/test/tasking/kmp_taskloop.c
    openmp/trunk/runtime/test/tasking/omp_task_priority.c
    openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c
    openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c
    openmp/trunk/runtime/test/worksharing/for/kmp_doacross_check.c
    openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_guided.c
    openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c
    openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c
    openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c
    openmp/trunk/runtime/test/worksharing/for/omp_doacross.c

Modified: openmp/trunk/runtime/test/affinity/bug-nested.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/affinity/bug-nested.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/affinity/bug-nested.c (original)
+++ openmp/trunk/runtime/test/affinity/bug-nested.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile && env KMP_AFFINITY=compact %libomp-run
-// REQUIRES: openmp-4.0
 
 #include <stdio.h>
 #include <stdint.h>

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=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c (original)
+++ openmp/trunk/runtime/test/tasking/bug_nested_proxy_task.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 // The runtime currently does not get dependency information from GCC.
 // UNSUPPORTED: gcc
 

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=366341&r1=366340&r2=366341&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 Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 // The runtime currently does not get dependency information from GCC.
 // UNSUPPORTED: gcc
 

Modified: openmp/trunk/runtime/test/tasking/kmp_taskloop.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/kmp_taskloop.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/kmp_taskloop.c (original)
+++ openmp/trunk/runtime/test/tasking/kmp_taskloop.c Wed Jul 17 08:41:00 2019
@@ -1,6 +1,5 @@
 // RUN: %libomp-compile-and-run
 // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
-// REQUIRES: openmp-4.5
 #include <stdio.h>
 #include <omp.h>
 #include "omp_my_sleep.h"

Modified: openmp/trunk/runtime/test/tasking/omp_task_priority.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/tasking/omp_task_priority.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_task_priority.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_task_priority.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile && env OMP_MAX_TASK_PRIORITY=42 %libomp-run
-// REQUIRES: openmp-4.5
 // Test OMP 4.5 task priorities
 // Currently only API function and envirable parsing implemented.
 // Test environment sets envirable: OMP_MAX_TASK_PRIORITY=42 as tested below.

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=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_taskloop_grainsize.c Wed Jul 17 08:41:00 2019
@@ -1,6 +1,5 @@
 // RUN: %libomp-compile-and-run
 // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
-// REQUIRES: openmp-4.5
 
 // These compilers don't support the taskloop construct
 // UNSUPPORTED: gcc-4, gcc-5, icc-16

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=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c (original)
+++ openmp/trunk/runtime/test/tasking/omp_taskloop_num_tasks.c Wed Jul 17 08:41:00 2019
@@ -2,7 +2,6 @@
 // UNSUPPORTED: netbsd
 // RUN: %libomp-compile-and-run
 // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run
-// REQUIRES: openmp-4.5
 
 // These compilers don't support the taskloop construct
 // UNSUPPORTED: gcc-4, gcc-5, icc-16

Modified: openmp/trunk/runtime/test/worksharing/for/kmp_doacross_check.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/kmp_doacross_check.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/kmp_doacross_check.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/kmp_doacross_check.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 // UNSUPPORTED: gcc
 // This test is incompatible with gcc because of the explicit call to
 // __kmpc_doacross_fini().  gcc relies on an implicit call to this function

Modified: openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_guided.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_guided.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_guided.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_guided.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 /*
   Test for the 'schedule(simd:guided)' clause.
   Compiler needs to generate a dynamic dispatching and pass the schedule

Modified: openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 
 // The test checks schedule(simd:runtime)
 // in combination with omp_set_schedule()

Modified: openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c Wed Jul 17 08:41:00 2019
@@ -6,7 +6,6 @@
 // RUN: env OMP_SCHEDULE=dynamic,1 %libomp-run 1
 // RUN: env OMP_SCHEDULE=dynamic,2 %libomp-run 2
 // RUN: env OMP_SCHEDULE=auto      %libomp-run
-// REQUIRES: openmp-4.5
 
 // The test checks schedule(simd:runtime)
 // in combination with OMP_SCHEDULE=guided[,chunk]

Modified: openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c Wed Jul 17 08:41:00 2019
@@ -1,6 +1,5 @@
 // RUN: %libomp-compile && %libomp-run
 // RUN: %libomp-run 1 && %libomp-run 2
-// REQUIRES: openmp-4.5
 
 // The test checks schedule(simd:runtime)
 // in combination with OMP_SCHEDULE=static[,chunk]

Modified: openmp/trunk/runtime/test/worksharing/for/omp_doacross.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/omp_doacross.c?rev=366341&r1=366340&r2=366341&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/omp_doacross.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/omp_doacross.c Wed Jul 17 08:41:00 2019
@@ -1,5 +1,4 @@
 // RUN: %libomp-compile-and-run
-// REQUIRES: openmp-4.5
 // XFAIL: gcc-4, gcc-5, clang-3.7, clang-3.8, icc-15, icc-16
 #include <stdio.h>
 #include <stdlib.h>




More information about the Openmp-commits mailing list