[Openmp-commits] [openmp] r338051 - [test] Remove XFAIL of omp_for_bigbounds.c for Intel Compiler

Jonas Hahnfeld via Openmp-commits openmp-commits at lists.llvm.org
Thu Jul 26 11:14:57 PDT 2018


Author: hahnfeld
Date: Thu Jul 26 11:14:57 2018
New Revision: 338051

URL: http://llvm.org/viewvc/llvm-project?rev=338051&view=rev
Log:
[test] Remove XFAIL of omp_for_bigbounds.c for Intel Compiler

The initial commit said that the test passes with Intel Compiler,
so change XFAIL to only list clang and gcc.

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

Modified:
    openmp/trunk/runtime/test/worksharing/for/omp_for_bigbounds.c

Modified: openmp/trunk/runtime/test/worksharing/for/omp_for_bigbounds.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/test/worksharing/for/omp_for_bigbounds.c?rev=338051&r1=338050&r2=338051&view=diff
==============================================================================
--- openmp/trunk/runtime/test/worksharing/for/omp_for_bigbounds.c (original)
+++ openmp/trunk/runtime/test/worksharing/for/omp_for_bigbounds.c Thu Jul 26 11:14:57 2018
@@ -1,7 +1,10 @@
 // RUN: %libomp-compile -DMY_SCHEDULE=static && %libomp-run
 // RUN: %libomp-compile -DMY_SCHEDULE=dynamic && %libomp-run
 // RUN: %libomp-compile -DMY_SCHEDULE=guided && %libomp-run
-// XFAIL: *
+
+// Only works with Intel Compiler since at least version 15.0
+// XFAIL: gcc, clang
+
 /*
  * Test that large bounds are handled properly and calculations of
  * loop iterations don't accidently overflow




More information about the Openmp-commits mailing list