Files
clang-p2996/flang/test/Semantics/symbol07.f90
Ivan Zhechev eabae4cf57 [Flang] Ported test_symbols to Python
Due to unavailability of Flang testing on Windows, the shell scripts
are being ported to Python. The following changes are being made in
this patch: removed test_symbols.sh and common.sh, and ported them
to Python. Changes to the tests themselves so that they use the
python scripts instead of the shell script.

Reviewed By: Meinersbur, awarzynski, kiranchandramohan

Differential Revision: https://reviews.llvm.org/D107041
2021-08-09 16:20:06 +01:00

41 lines
791 B
Fortran

! RUN: %python %S/test_symbols.py %s %flang_fc1
!DEF: /main MainProgram
program main
implicit complex(z)
!DEF: /main/t DerivedType
type :: t
!DEF: /main/t/re ObjectEntity REAL(4)
real :: re
!DEF: /main/t/im ObjectEntity REAL(4)
real :: im
end type
!DEF: /main/z1 ObjectEntity COMPLEX(4)
complex z1
!REF: /main/t
!DEF: /main/w ObjectEntity TYPE(t)
type(t) :: w
!DEF: /main/x ObjectEntity REAL(4)
!DEF: /main/y ObjectEntity REAL(4)
real x, y
!REF: /main/x
!REF: /main/z1
x = z1%re
!REF: /main/y
!REF: /main/z1
y = z1%im
!DEF: /main/z2 (Implicit) ObjectEntity COMPLEX(4)
!REF: /main/x
z2%re = x
!REF: /main/z2
!REF: /main/y
z2%im = y
!REF: /main/x
!REF: /main/w
!REF: /main/t/re
x = w%re
!REF: /main/y
!REF: /main/w
!REF: /main/t/im
y = w%im
end program