mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:46:46 +00:00

To enable Flang testing on Windows, shell scripts have to be ported to Python. The following changes have been made: "test_modfile.sh" has been ported to Python, and the relevant tests relying on it. Reviewed By: Meinersbur Differential Revision: https://reviews.llvm.org/D107956
32 lines
397 B
Fortran
32 lines
397 B
Fortran
! RUN: %python %S/test_modfile.py %s %flang_fc1
|
|
! Use-association with VOLATILE or ASYNCHRONOUS
|
|
|
|
module m1
|
|
real x
|
|
integer y
|
|
volatile z
|
|
contains
|
|
end
|
|
|
|
module m2
|
|
use m1
|
|
volatile x
|
|
asynchronous y
|
|
end
|
|
|
|
!Expect: m1.mod
|
|
!module m1
|
|
!real(4)::x
|
|
!integer(4)::y
|
|
!real(4),volatile::z
|
|
!end
|
|
|
|
!Expect: m2.mod
|
|
!module m2
|
|
!use m1,only:x
|
|
!use m1,only:y
|
|
!use m1,only:z
|
|
!volatile::x
|
|
!asynchronous::y
|
|
!end
|