Files
clang-p2996/flang/test/Semantics/omp-symbol01.f90
Tim Keith 99aa87a5b5 [flang][NFC] Simplify semantics test scripts
There were several different ways of handling the option to f18 to
find predefined modules:
- test_errors.sh was created by cmake substituting
  FLANG_INTRINSIC_MODULES_DIR into test_errors.sh.in
- some tests used the flang script which has the option built it
- some tests used %f18_with_includes which was replaced by the path
  to f18 plus the -I option
- some included -I../../include/flang in their run command

To make this more consistent, change %f18 to include the
-intrinsic-module-directory option and use it everywhere, including
to replace %flang and %f18_with_includes. This requires changing all
of the invocations of the test scripts to put %f18 at the end so that
it can expand to more than one argument.

This eliminates the need to generate test_errors.sh which means we
don't need flang/test/Semantics/CMakeLists.txt or the %B substitution.
That makes the test_errors.sh command like the others, replacing
%B/test/Semantics/test_errors.sh with %S/test_errors.sh.

Also remove the OPTIONS: functionality as custom options can be included
in the RUN: command. And remove -I/../../include/flang as that is now
always included.

Differential Revision: https://reviews.llvm.org/D79634
2020-05-11 11:49:25 -07:00

69 lines
1.6 KiB
Fortran

! RUN: %S/test_symbols.sh %s %t %f18 -fopenmp
! Test clauses that accept list.
! 2.1 Directive Format
! A list consists of a comma-separated collection of one or more list items.
! A list item is a variable, array section or common block name (enclosed in
! slashes).
!DEF: /md Module
module md
!DEF: /md/myty PUBLIC DerivedType
type :: myty
!DEF: /md/myty/a ObjectEntity REAL(4)
real :: a
!DEF: /md/myty/b ObjectEntity INTEGER(4)
integer :: b
end type myty
end module md
!DEF: /mm MainProgram
program mm
!REF: /md
use :: md
!DEF: /mm/c CommonBlockDetails
!DEF: /mm/x ObjectEntity REAL(4)
!DEF: /mm/y ObjectEntity REAL(4)
common /c/x, y
!REF: /mm/x
!REF: /mm/y
real x, y
!DEF: /mm/myty Use
!DEF: /mm/t ObjectEntity TYPE(myty)
type(myty) :: t
!DEF: /mm/b ObjectEntity INTEGER(4)
integer b(10)
!REF: /mm/t
!REF: /md/myty/a
t%a = 3.14
!REF: /mm/t
!REF: /md/myty/b
t%b = 1
!REF: /mm/b
b = 2
!DEF: /mm/a (Implicit) ObjectEntity REAL(4)
a = 1.0
!DEF: /mm/c (Implicit) ObjectEntity REAL(4)
c = 2.0
!$omp parallel do private(a,t,/c/) shared(c)
!DEF: /mm/Block1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)
do i=1,10
!DEF: /mm/Block1/a (OmpPrivate) HostAssoc REAL(4)
!REF: /mm/b
!REF: /mm/Block1/i
a = a+b(i)
!DEF: /mm/Block1/t (OmpPrivate) HostAssoc TYPE(myty)
!REF: /md/myty/a
!REF: /mm/Block1/i
t%a = i
!DEF: /mm/Block1/y (OmpPrivate) HostAssoc REAL(4)
y = 0.
!DEF: /mm/Block1/x (OmpPrivate) HostAssoc REAL(4)
!REF: /mm/Block1/a
!REF: /mm/Block1/i
!REF: /mm/Block1/y
x = a+i+y
!REF: /mm/c
c = 3.0
end do
end program