diff options
author | Michael Kruse <llvm-project@meinersbur.de> | 2021-12-07 13:30:57 -0600 |
---|---|---|
committer | Michael Kruse <llvm-project@meinersbur.de> | 2021-12-07 13:47:19 -0600 |
commit | 7b9d5b442d8e5856fb5c7429e2811d5d788802cf (patch) | |
tree | 966e4882c7f396a6e233453ab6b303f195008d13 | |
parent | e6fde4c82870e6d8289faffe12a7f4c455d38bb2 (diff) | |
download | llvm-users/meinersbur/irbuilder-tests.zip llvm-users/meinersbur/irbuilder-tests.tar.gz llvm-users/meinersbur/irbuilder-tests.tar.bz2 |
Fix/adapt testsusers/meinersbur/irbuilder-tests
-rw-r--r-- | openmp/runtime/test/ompt/tasks/taskwait-depend.c | 1 | ||||
-rw-r--r-- | openmp/runtime/test/parallel/omp_dtor_parallel_dtor.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/openmp/runtime/test/ompt/tasks/taskwait-depend.c b/openmp/runtime/test/ompt/tasks/taskwait-depend.c index 752486c..53cf11b 100644 --- a/openmp/runtime/test/ompt/tasks/taskwait-depend.c +++ b/openmp/runtime/test/ompt/tasks/taskwait-depend.c @@ -10,6 +10,7 @@ // support for taskwait with depend clause introduced in clang-14 // UNSUPPORTED: clang-5, clang-6, clang-6, clang-8, clang-9, clang-10, clang-11, // clang-12, clang-13 +// XFAIL: irbuilder #include "callback.h" #include <omp.h> diff --git a/openmp/runtime/test/parallel/omp_dtor_parallel_dtor.cpp b/openmp/runtime/test/parallel/omp_dtor_parallel_dtor.cpp index 011e108..669369b 100644 --- a/openmp/runtime/test/parallel/omp_dtor_parallel_dtor.cpp +++ b/openmp/runtime/test/parallel/omp_dtor_parallel_dtor.cpp @@ -26,10 +26,10 @@ int main() { Destructible dtor2{result[tid], 1}; } - if (common == 1 && result[0] == 1 && result[1] == 1) { + if (common == 0 && result[0] == 1 && result[1] == 1) { printf("SUCCESS\n"); return EXIT_SUCCESS; } - printf("FAILED\n"); + printf("FAILED (%d, %d, %d)\n", common, result[0], result[1]); return EXIT_FAILURE; } |