[OpenMP][Tests][NFC] Flagging OMPT tests as XFAIL for Intel compilers

With Intel 19 compiler the teams tests fail to link while trying to link
liboffload.

GitOrigin-RevId: 5918688248fa103c46da3a6ff86e7fab0e63fb45
diff --git a/runtime/test/ompt/tasks/dependences_mutexinoutset.c b/runtime/test/ompt/tasks/dependences_mutexinoutset.c
index 17cb2fd..50385b6 100644
--- a/runtime/test/ompt/tasks/dependences_mutexinoutset.c
+++ b/runtime/test/ompt/tasks/dependences_mutexinoutset.c
@@ -4,6 +4,9 @@
 // GCC 9 introduced codegen for mutexinoutset
 // UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8
 
+// icc does not yet support mutexinoutset
+// XFAIL: icc
+
 // clang 9 introduced codegen for mutexinoutset
 // UNSUPPORTED: clang-4, clang-5, clang-6, clang-7, clang-8
 
diff --git a/runtime/test/ompt/tasks/taskwait-depend.c b/runtime/test/ompt/tasks/taskwait-depend.c
index 74fee20..16d0ee3 100644
--- a/runtime/test/ompt/tasks/taskwait-depend.c
+++ b/runtime/test/ompt/tasks/taskwait-depend.c
@@ -4,6 +4,9 @@
 // taskwait with depend clause was introduced with gcc-9
 // UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8
 
+// icc does not yet support taskwait with depend clause
+// XFAIL: icc
+
 // clang does not yet support taskwait with depend clause
 // clang-12 introduced parsing, but no codegen
 // update expected result when codegen in clang was added
diff --git a/runtime/test/ompt/teams/parallel_team.c b/runtime/test/ompt/teams/parallel_team.c
index 96ce0d5..255d03b 100644
--- a/runtime/test/ompt/teams/parallel_team.c
+++ b/runtime/test/ompt/teams/parallel_team.c
@@ -1,6 +1,8 @@
 // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
 // REQUIRES: ompt, multicpu
 // UNSUPPORTED: gcc
+// Compilation fails for icc
+// XFAIL: icc
 #include "callback.h"
 
 int main() {
diff --git a/runtime/test/ompt/teams/serial_teams.c b/runtime/test/ompt/teams/serial_teams.c
index abd3db5..d436fac 100644
--- a/runtime/test/ompt/teams/serial_teams.c
+++ b/runtime/test/ompt/teams/serial_teams.c
@@ -1,6 +1,8 @@
 // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
 // REQUIRES: ompt, multicpu
 // UNSUPPORTED: gcc
+// Compilation fails for icc
+// XFAIL: icc
 #include "callback.h"
 
 int main() {
diff --git a/runtime/test/ompt/teams/serialized.c b/runtime/test/ompt/teams/serialized.c
index 4edd422..4aeb406 100644
--- a/runtime/test/ompt/teams/serialized.c
+++ b/runtime/test/ompt/teams/serialized.c
@@ -1,6 +1,9 @@
 // RUN: %libomp-compile-and-run | FileCheck %s
 // REQUIRES: ompt
 // UNSUPPORTED: gcc
+// Compilation fails for icc
+// XFAIL: icc
+
 #include "callback.h"
 
 int main() {
diff --git a/runtime/test/ompt/teams/team.c b/runtime/test/ompt/teams/team.c
index 3aa85ea..55b57e7 100644
--- a/runtime/test/ompt/teams/team.c
+++ b/runtime/test/ompt/teams/team.c
@@ -1,6 +1,8 @@
 // RUN: %libomp-compile-and-run | FileCheck %s
 // REQUIRES: ompt
 // UNSUPPORTED: gcc
+// Compilation fails for icc
+// XFAIL: icc
 #include "callback.h"
 
 int main() {