mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-14 14:56:47 +00:00
![Ivan Zhechev](/assets/img/avatar_default.png)
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
29 lines
464 B
Fortran
29 lines
464 B
Fortran
! RUN: %python %S/test_modfile.py %s %flang_fc1
|
|
! Check modfile generation for external interface
|
|
module m
|
|
interface
|
|
integer function f(x)
|
|
end function
|
|
subroutine s(y, z)
|
|
logical y
|
|
complex z
|
|
end subroutine
|
|
end interface
|
|
end
|
|
|
|
!Expect: m.mod
|
|
!module m
|
|
! interface
|
|
! function f(x)
|
|
! real(4)::x
|
|
! integer(4)::f
|
|
! end
|
|
! end interface
|
|
! interface
|
|
! subroutine s(y,z)
|
|
! logical(4)::y
|
|
! complex(4)::z
|
|
! end
|
|
! end interface
|
|
!end
|