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
28 lines
609 B
Fortran
28 lines
609 B
Fortran
! RUN: %python %S/test_symbols.py %s %flang_fc1
|
|
! Statement functions
|
|
|
|
!DEF: /p1 MainProgram
|
|
program p1
|
|
!DEF: /p1/f (Function, StmtFunction) Subprogram INTEGER(4)
|
|
!DEF: /p1/i ObjectEntity INTEGER(4)
|
|
!DEF: /p1/j ObjectEntity INTEGER(4)
|
|
integer f, i, j
|
|
!REF: /p1/f
|
|
!REF: /p1/i
|
|
!DEF: /p1/f/i ObjectEntity INTEGER(4)
|
|
f(i) = i + 1
|
|
!REF: /p1/j
|
|
!REF: /p1/f
|
|
j = f(2)
|
|
end program
|
|
|
|
!DEF: /p2 MainProgram
|
|
program p2
|
|
!DEF: /p2/f (Function, StmtFunction) Subprogram REAL(4)
|
|
!DEF: /p2/f/x (Implicit) ObjectEntity REAL(4)
|
|
!DEF: /p2/y (Implicit) ObjectEntity REAL(4)
|
|
f(x) = y
|
|
!REF: /p2/y
|
|
y = 1.0
|
|
end program
|