diff --git a/flang/docs/FlangDriver.md b/flang/docs/FlangDriver.md index f246163d3ce66..2b7d9d4ae6908 100644 --- a/flang/docs/FlangDriver.md +++ b/flang/docs/FlangDriver.md @@ -360,10 +360,8 @@ be exactly what you want to test. In fact, you can check these additional flags by using the `-###` compiler driver command line option. Lastly, you can use `! REQUIRES: ` for tests that will only work when -`` is available. For example, you can use`! REQUIRES: shell` to mark a -test as only available on Unix-like systems (i.e. systems that contain a Unix -shell). In practice this means that the corresponding test is skipped on -Windows. +`` is available. For example, you can use`! REQUIRES: system-linux` to +mark a test as only available on Linux systems. ## Frontend Driver Plugins Plugins are an extension to the frontend driver that make it possible to run diff --git a/flang/test/Driver/color-diagnostics-parse.f90 b/flang/test/Driver/color-diagnostics-parse.f90 index 3682224ac9525..3569437aee033 100644 --- a/flang/test/Driver/color-diagnostics-parse.f90 +++ b/flang/test/Driver/color-diagnostics-parse.f90 @@ -1,7 +1,7 @@ ! Test the behaviors of -f{no-}color-diagnostics and -f{no-}diagnostics-color ! when emitting parsing diagnostics. ! Windows command prompt doesn't support ANSI escape sequences. -! REQUIRES: shell +! REQUIRES: system-linux ! RUN: not %flang %s -fcolor-diagnostics 2>&1 \ ! RUN: | FileCheck %s --check-prefix=CHECK_CD diff --git a/flang/test/Driver/color-diagnostics-scan.f b/flang/test/Driver/color-diagnostics-scan.f index 29d4635b4fb03..1c02e732f9537 100644 --- a/flang/test/Driver/color-diagnostics-scan.f +++ b/flang/test/Driver/color-diagnostics-scan.f @@ -1,7 +1,7 @@ ! Test the behaviors of -f{no-}color-diagnostics and -f{no}-diagnostic-colors ! when emitting scanning diagnostics. ! Windows command prompt doesn't support ANSI escape sequences. -! REQUIRES: shell +! REQUIRES: system-linux ! RUN: not %flang %s -E -Werror -fcolor-diagnostics 2>&1 \ ! RUN: | FileCheck %s --check-prefix=CHECK_CD diff --git a/flang/test/Driver/color-diagnostics-sema.f90 b/flang/test/Driver/color-diagnostics-sema.f90 index ca87b196a82f0..79e8fe406006e 100644 --- a/flang/test/Driver/color-diagnostics-sema.f90 +++ b/flang/test/Driver/color-diagnostics-sema.f90 @@ -1,7 +1,7 @@ ! Test the behaviors of -f{no-}color-diagnostics and -f{no}diagnostics-color ! when emitting semantic diagnostics. ! Windows command prompt doesn't support ANSI escape sequences. -! REQUIRES: shell +! REQUIRES: system-linux ! RUN: not %flang %s -fcolor-diagnostics 2>&1 \ ! RUN: | FileCheck %s --check-prefix=CHECK_CD diff --git a/flang/test/Driver/color-diagnostics.f90 b/flang/test/Driver/color-diagnostics.f90 index cbb6bf74f97f7..7c471e39f923f 100644 --- a/flang/test/Driver/color-diagnostics.f90 +++ b/flang/test/Driver/color-diagnostics.f90 @@ -1,6 +1,6 @@ ! Test the behaviors of -f{no-}color-diagnostics and -f{no}-diagnostics-color. ! Windows command prompt doesn't support ANSI escape sequences. -! REQUIRES: shell +! REQUIRES: system-linux ! RUN: not %flang %s -fcolor-diagnostics 2>&1 \ ! RUN: | FileCheck %s --check-prefix=CHECK_CD diff --git a/flang/test/Lower/Intrinsics/selected_int_kind.f90 b/flang/test/Lower/Intrinsics/selected_int_kind.f90 index 96e9e1b568845..20f241c520367 100644 --- a/flang/test/Lower/Intrinsics/selected_int_kind.f90 +++ b/flang/test/Lower/Intrinsics/selected_int_kind.f90 @@ -1,4 +1,3 @@ -! REQUIRES: shell ! RUN: bbc -emit-fir -hlfir=false %s -o - | FileCheck %s ! CHECK-LABEL: func.func @_QPselected_int_kind_test1( diff --git a/flang/test/Lower/Intrinsics/selected_real_kind.f90 b/flang/test/Lower/Intrinsics/selected_real_kind.f90 index 388703a35d692..dbfa1bd463320 100644 --- a/flang/test/Lower/Intrinsics/selected_real_kind.f90 +++ b/flang/test/Lower/Intrinsics/selected_real_kind.f90 @@ -1,4 +1,3 @@ -! REQUIRES: shell ! RUN: bbc -emit-fir -hlfir=false %s -o - | FileCheck %s ! CHECK-LABEL: func.func @_QPselected_real_kind_test1( diff --git a/flang/test/Lower/OpenMP/parallel-firstprivate-clause-scalar.f90 b/flang/test/Lower/OpenMP/parallel-firstprivate-clause-scalar.f90 index 2bb1036c4a7fa..416d1abca36c8 100644 --- a/flang/test/Lower/OpenMP/parallel-firstprivate-clause-scalar.f90 +++ b/flang/test/Lower/OpenMP/parallel-firstprivate-clause-scalar.f90 @@ -1,7 +1,6 @@ ! This test checks lowering of `FIRSTPRIVATE` clause for scalar types. ! REQUIRES: x86-registered-target -! REQUIRES: shell ! RUN: bbc -target x86_64-unknown-linux-gnu -fopenmp -emit-hlfir %s -o - \ ! RUN: | FileCheck %s --check-prefixes=CHECK%if target=x86_64{{.*}} %{,CHECK-KIND10%}%if flang-supports-f128-math %{,CHECK-KIND16%} diff --git a/flang/test/Lower/OpenMP/parallel-private-clause-str.f90 b/flang/test/Lower/OpenMP/parallel-private-clause-str.f90 index d8403fbbaa510..a08c0b28e3e41 100644 --- a/flang/test/Lower/OpenMP/parallel-private-clause-str.f90 +++ b/flang/test/Lower/OpenMP/parallel-private-clause-str.f90 @@ -1,7 +1,6 @@ ! This test checks lowering of OpenMP parallel Directive with ! `PRIVATE` clause present for strings -! REQUIRES: shell ! RUN: bbc -fopenmp -emit-hlfir %s -o - \ ! RUN: | FileCheck %s diff --git a/flang/test/Lower/OpenMP/parallel-private-clause.f90 b/flang/test/Lower/OpenMP/parallel-private-clause.f90 index 492fb3bb9740d..393443512c6eb 100644 --- a/flang/test/Lower/OpenMP/parallel-private-clause.f90 +++ b/flang/test/Lower/OpenMP/parallel-private-clause.f90 @@ -1,7 +1,6 @@ ! This test checks lowering of OpenMP parallel Directive with ! `PRIVATE` clause present. -! REQUIRES: shell ! RUN: bbc --use-desc-for-alloc=false -fopenmp -emit-hlfir %s -o - \ ! RUN: | FileCheck %s --check-prefix=FIRDialect diff --git a/flang/test/Lower/OpenMP/threadprivate-integer-different-kinds.f90 b/flang/test/Lower/OpenMP/threadprivate-integer-different-kinds.f90 index 130927bfd0658..d6490e866e19c 100644 --- a/flang/test/Lower/OpenMP/threadprivate-integer-different-kinds.f90 +++ b/flang/test/Lower/OpenMP/threadprivate-integer-different-kinds.f90 @@ -1,7 +1,6 @@ ! This test checks lowering of OpenMP Threadprivate Directive. ! Test for variables with different kind. -!REQUIRES: shell !RUN: %flang_fc1 -emit-hlfir -fopenmp %s -o - | FileCheck %s program test diff --git a/flang/test/Lower/OpenMP/wsloop-variable.f90 b/flang/test/Lower/OpenMP/wsloop-variable.f90 index a7fb5fb8936e7..f998c84331ce4 100644 --- a/flang/test/Lower/OpenMP/wsloop-variable.f90 +++ b/flang/test/Lower/OpenMP/wsloop-variable.f90 @@ -1,7 +1,6 @@ ! This test checks lowering of OpenMP DO Directive(Worksharing) for different ! types of loop iteration variable, lower bound, upper bound, and step. -!REQUIRES: shell !RUN: bbc -fopenmp -emit-hlfir %s -o - 2>&1 | FileCheck %s !CHECK: OpenMP loop iteration variable cannot have more than 64 bits size and will be narrowed into 64 bits. diff --git a/flang/test/Semantics/OpenMP/do07.f90 b/flang/test/Semantics/OpenMP/do07.f90 index 44fe5f86045ac..5b3eb28c17e7f 100644 --- a/flang/test/Semantics/OpenMP/do07.f90 +++ b/flang/test/Semantics/OpenMP/do07.f90 @@ -1,5 +1,4 @@ ! RUN: not %flang -fsyntax-only -fopenmp %s 2>&1 | FileCheck %s -! REQUIRES: shell ! OpenMP Version 4.5 ! 2.7.1 Loop Construct ! No statement in the associated loops other than the DO statements diff --git a/flang/test/Semantics/OpenMP/invalid-branch.f90 b/flang/test/Semantics/OpenMP/invalid-branch.f90 index 28aab8b122f3f..581103d927bf1 100644 --- a/flang/test/Semantics/OpenMP/invalid-branch.f90 +++ b/flang/test/Semantics/OpenMP/invalid-branch.f90 @@ -1,5 +1,4 @@ ! RUN: not %flang -fsyntax-only -fopenmp %s 2>&1 | FileCheck %s -! REQUIRES: shell ! OpenMP Version 4.5 ! Check invalid branches into or out of OpenMP structured blocks. diff --git a/flang/test/Semantics/OpenMP/nontemporal.f90 b/flang/test/Semantics/OpenMP/nontemporal.f90 index ad0ebc85b5ce7..ac662bf28df0f 100644 --- a/flang/test/Semantics/OpenMP/nontemporal.f90 +++ b/flang/test/Semantics/OpenMP/nontemporal.f90 @@ -1,5 +1,4 @@ ! RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=50 -! REQUIRES: shell ! Check OpenMP clause validity for NONTEMPORAL clause program omp_simd diff --git a/flang/test/Semantics/missing_newline.f90 b/flang/test/Semantics/missing_newline.f90 index 7261ac824bedb..8e3ff27219ccf 100644 --- a/flang/test/Semantics/missing_newline.f90 +++ b/flang/test/Semantics/missing_newline.f90 @@ -1,5 +1,4 @@ ! RUN: echo -n "end program" > %t.f90 ! RUN: %flang_fc1 -fsyntax-only %t.f90 -! RUN: echo -ne "\rend program" > %t.f90 +! RUN: echo -n -e "\rend program" > %t.f90 ! RUN: %flang_fc1 -fsyntax-only %t.f90 -! REQUIRES: shell