[Openmp-commits] [openmp] ad0f6e1 - [openmp] Disable the tests that block CI for amdgpu and host offloading.
Jon Chesterfield via Openmp-commits
openmp-commits at lists.llvm.org
Thu Aug 19 12:43:47 PDT 2021
Author: Jon Chesterfield
Date: 2021-08-19T20:43:30+01:00
New Revision: ad0f6e1d984067a3dc81c17abcdd2fc3c7ff9946
URL: https://github.com/llvm/llvm-project/commit/ad0f6e1d984067a3dc81c17abcdd2fc3c7ff9946
DIFF: https://github.com/llvm/llvm-project/commit/ad0f6e1d984067a3dc81c17abcdd2fc3c7ff9946.diff
LOG: [openmp] Disable the tests that block CI for amdgpu and host offloading.
Added:
Modified:
openmp/libomptarget/test/offloading/bug49021.cpp
openmp/libomptarget/test/offloading/bug49334.cpp
openmp/libomptarget/test/offloading/bug50022.cpp
openmp/libomptarget/test/offloading/global_constructor.cpp
openmp/libomptarget/test/offloading/memory_manager.cpp
openmp/libomptarget/test/offloading/parallel_offloading_map.cpp
openmp/libomptarget/test/offloading/taskloop_offload_nowait.cpp
Removed:
################################################################################
diff --git a/openmp/libomptarget/test/offloading/bug49021.cpp b/openmp/libomptarget/test/offloading/bug49021.cpp
index 6cd617f7a06bb..521adf230bed8 100644
--- a/openmp/libomptarget/test/offloading/bug49021.cpp
+++ b/openmp/libomptarget/test/offloading/bug49021.cpp
@@ -1,5 +1,8 @@
// RUN: %libomptarget-compilexx-generic -O3 && %libomptarget-run-generic
+// Wrong results on amdgcn
+// UNSUPPORTED: amdgcn-amd-amdhsa
+
#include <iostream>
template <typename T> int test_map() {
diff --git a/openmp/libomptarget/test/offloading/bug49334.cpp b/openmp/libomptarget/test/offloading/bug49334.cpp
index cb096215fcf2c..0ba081555453c 100644
--- a/openmp/libomptarget/test/offloading/bug49334.cpp
+++ b/openmp/libomptarget/test/offloading/bug49334.cpp
@@ -3,6 +3,8 @@
// Currently hangs on amdgpu
// UNSUPPORTED: amdgcn-amd-amdhsa
+// UNSUPPORTED: x86_64-pc-linux-gnu
+
#include <cassert>
#include <iostream>
#include <memory>
diff --git a/openmp/libomptarget/test/offloading/bug50022.cpp b/openmp/libomptarget/test/offloading/bug50022.cpp
index 54ce06ea2d539..a520442c835c5 100644
--- a/openmp/libomptarget/test/offloading/bug50022.cpp
+++ b/openmp/libomptarget/test/offloading/bug50022.cpp
@@ -1,5 +1,7 @@
// RUN: %libomptarget-compilexx-and-run-generic
+// UNSUPPORTED: amdgcn-amd-amdhsa
+
#include <cassert>
#include <iostream>
#include <stdexcept>
diff --git a/openmp/libomptarget/test/offloading/global_constructor.cpp b/openmp/libomptarget/test/offloading/global_constructor.cpp
index be78759d85f9a..d73fe1ad938f3 100644
--- a/openmp/libomptarget/test/offloading/global_constructor.cpp
+++ b/openmp/libomptarget/test/offloading/global_constructor.cpp
@@ -1,5 +1,8 @@
// RUN: %libomptarget-compilexx-generic && %libomptarget-run-generic | %fcheck-generic
+// Fails in DAGToDAG on an address space problem
+// UNSUPPORTED: amdgcn-amd-amdhsa
+
#include <cmath>
#include <cstdio>
diff --git a/openmp/libomptarget/test/offloading/memory_manager.cpp b/openmp/libomptarget/test/offloading/memory_manager.cpp
index ab7872cb7fb68..aa481a078408c 100644
--- a/openmp/libomptarget/test/offloading/memory_manager.cpp
+++ b/openmp/libomptarget/test/offloading/memory_manager.cpp
@@ -1,5 +1,7 @@
// RUN: %libomptarget-compilexx-run-and-check-generic
+// UNSUPPORTED: x86_64-pc-linux-gnu
+
#include <omp.h>
#include <cassert>
diff --git a/openmp/libomptarget/test/offloading/parallel_offloading_map.cpp b/openmp/libomptarget/test/offloading/parallel_offloading_map.cpp
index e7e9ba8268dda..eace4cb97247a 100644
--- a/openmp/libomptarget/test/offloading/parallel_offloading_map.cpp
+++ b/openmp/libomptarget/test/offloading/parallel_offloading_map.cpp
@@ -1,5 +1,7 @@
// RUN: %libomptarget-compilexx-run-and-check-generic
+// UNSUPPORTED: x86_64-pc-linux-gnu
+
#include <cassert>
#include <iostream>
diff --git a/openmp/libomptarget/test/offloading/taskloop_offload_nowait.cpp b/openmp/libomptarget/test/offloading/taskloop_offload_nowait.cpp
index c90d6d4fcb40d..e522f9f19631c 100644
--- a/openmp/libomptarget/test/offloading/taskloop_offload_nowait.cpp
+++ b/openmp/libomptarget/test/offloading/taskloop_offload_nowait.cpp
@@ -1,5 +1,7 @@
// RUN: %libomptarget-compilexx-and-run-generic
+// UNSUPPORTED: x86_64-pc-linux-gnu
+
#include <cmath>
#include <cstdlib>
#include <iostream>
More information about the Openmp-commits
mailing list