[Openmp-commits] [openmp] r367939 - [OpenMP] Fix broken build due to new OMPT tests

Hansang Bae via Openmp-commits openmp-commits at lists.llvm.org
Mon Aug 5 14:46:13 PDT 2019


Author: hbae
Date: Mon Aug  5 14:46:13 2019
New Revision: 367939

URL: http://llvm.org/viewvc/llvm-project?rev=367939&view=rev
Log:
[OpenMP] Fix broken build due to new OMPT tests

New OMPT tests with teams construct should be disabled for GCC as it
emits code with a GOMP entry not supported in the LLVM runtime.

Differential Revision: https://reviews.llvm.org/D65757

Modified:
    openmp/trunk/runtime/test/ompt/teams/parallel_team.c
    openmp/trunk/runtime/test/ompt/teams/serial_teams.c
    openmp/trunk/runtime/test/ompt/teams/serialized.c
    openmp/trunk/runtime/test/ompt/teams/team.c

Modified: openmp/trunk/runtime/test/ompt/teams/parallel_team.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/ompt/teams/parallel_team.c?rev=367939&r1=367938&r2=367939&view=diff
==============================================================================
--- openmp/trunk/runtime/test/ompt/teams/parallel_team.c (original)
+++ openmp/trunk/runtime/test/ompt/teams/parallel_team.c Mon Aug  5 14:46:13 2019
@@ -1,6 +1,6 @@
 // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
 // REQUIRES: ompt
-// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7
+// UNSUPPORTED: gcc
 #include "callback.h"
 
 int main() {

Modified: openmp/trunk/runtime/test/ompt/teams/serial_teams.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/ompt/teams/serial_teams.c?rev=367939&r1=367938&r2=367939&view=diff
==============================================================================
--- openmp/trunk/runtime/test/ompt/teams/serial_teams.c (original)
+++ openmp/trunk/runtime/test/ompt/teams/serial_teams.c Mon Aug  5 14:46:13 2019
@@ -1,6 +1,6 @@
 // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
 // REQUIRES: ompt
-// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7
+// UNSUPPORTED: gcc
 #include "callback.h"
 
 int main() {

Modified: openmp/trunk/runtime/test/ompt/teams/serialized.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/ompt/teams/serialized.c?rev=367939&r1=367938&r2=367939&view=diff
==============================================================================
--- openmp/trunk/runtime/test/ompt/teams/serialized.c (original)
+++ openmp/trunk/runtime/test/ompt/teams/serialized.c Mon Aug  5 14:46:13 2019
@@ -1,6 +1,6 @@
 // RUN: %libomp-compile-and-run | FileCheck %s
 // REQUIRES: ompt
-// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7
+// UNSUPPORTED: gcc
 #include "callback.h"
 
 int main() {

Modified: openmp/trunk/runtime/test/ompt/teams/team.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/ompt/teams/team.c?rev=367939&r1=367938&r2=367939&view=diff
==============================================================================
--- openmp/trunk/runtime/test/ompt/teams/team.c (original)
+++ openmp/trunk/runtime/test/ompt/teams/team.c Mon Aug  5 14:46:13 2019
@@ -1,6 +1,6 @@
 // RUN: %libomp-compile-and-run | FileCheck %s
 // REQUIRES: ompt
-// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7
+// UNSUPPORTED: gcc
 #include "callback.h"
 
 int main() {




More information about the Openmp-commits mailing list