Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flang/test/Driver/pass-plugin-not-found.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
! Check the correct error diagnostic is reported when a pass plugin shared object isn't found

! REQUIRES: plugins, shell
! REQUIRES: plugins

! RUN: not %flang -fpass-plugin=X.Y %s 2>&1 | FileCheck %s --check-prefix=ERROR
! RUN: not %flang_fc1 -emit-llvm -o /dev/null -fpass-plugin=X.Y %s 2>&1 | FileCheck %s --check-prefix=ERROR
Expand Down
2 changes: 1 addition & 1 deletion flang/test/Driver/pass-plugin.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

! UNSUPPORTED: system-windows

! REQUIRES: plugins, shell, examples
! REQUIRES: plugins, examples

! RUN: %flang -S %s %loadbye -Xflang -fdebug-pass-manager -o /dev/null \
! RUN: 2>&1 | FileCheck %s
Expand Down
2 changes: 1 addition & 1 deletion flang/test/Driver/plugin-invalid-name.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
! Check the correct error diagnostic is reported when a plugin name isn't found

! REQUIRES: plugins, shell
! REQUIRES: plugins

! RUN: not %flang_fc1 -plugin -wrong-name %s 2>&1 | FileCheck %s --check-prefix=ERROR

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/feature-list-class.f90
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
! UNSUPPORTED: system-windows
! REQUIRES: plugins, shell, examples
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangFeatureList%pluginext \
! RUN: -plugin feature-list %s 2>&1 | FileCheck %s
Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/feature-list-functions.f90
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
! UNSUPPORTED: system-windows
! REQUIRES: plugins, shell, examples
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangFeatureList%pluginext \
! RUN: -plugin feature-list %s 2>&1 | FileCheck %s
Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-atomic.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-declarative-directive.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-device-constructs.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

!RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-in-reduction-clause.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp -fopenmp-version=50 %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-nowait.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-order-clause.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp -fopenmp-version=50 %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/omp-sections.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangOmpReport%pluginext -plugin flang-omp-report -fopenmp %s -o - | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/print-fns-calls.f90
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
! Check the Flang Print Function Names example plugin doesn't count/print function/subroutine calls (should only count definitions)
! This requires that the examples are built (LLVM_BUILD_EXAMPLES=ON) to access flangPrintFunctionNames.so

! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangPrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/print-fns-definitions.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
! This includes internal and external Function/Subroutines, but not Statement Functions
! This requires that the examples are built (LLVM_BUILD_EXAMPLES=ON) to access flangPrintFunctionNames.so

! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangPrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s

Expand Down
2 changes: 1 addition & 1 deletion flang/test/Examples/print-fns-interfaces.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
! (It should only count definitions, which will appear elsewhere for interfaced functions/subroutines)
! This requires that the examples are built (LLVM_BUILD_EXAMPLES=ON) to access flangPrintFunctionNames.so

! REQUIRES: plugins, examples, shell
! REQUIRES: plugins, examples

! RUN: %flang_fc1 -load %llvmshlibdir/flangPrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s

Expand Down