`-module-dir` is Flang's equivalent for `-J` from GFortran (in fact, `-J` is an alias for `-module-dir` in Flang). Currently, only `-module-dir <value>` is accepted. However, `-J` (and other options for specifying various paths) accepts `-J<value>` as well as `-J <value>`. This patch makes sure that `-module-dir` behaves consistently with other such flags. Differential Revision: https://reviews.llvm.org/D125957
38 lines
1.2 KiB
Fortran
38 lines
1.2 KiB
Fortran
! Checks that the module file:
|
|
! * is _saved_
|
|
! * is saved in the _directory specified by the user_
|
|
! We use `-fsyntax-only` as it stops after the semantic checks (the module file is generated when sema checks are run)
|
|
|
|
!--------------------------
|
|
! -module-dir <value>
|
|
!--------------------------
|
|
! RUN: rm -rf %t && mkdir -p %t/dir-flang
|
|
! RUN: cd %t && %flang -fsyntax-only -module-dir %t/dir-flang %s
|
|
! RUN: ls %t/dir-flang/testmodule.mod && not ls %t/testmodule.mod
|
|
|
|
!--------------------------
|
|
! -module-dir<value>
|
|
!--------------------------
|
|
! RUN: rm -rf %t && mkdir -p %t/dir-flang
|
|
! RUN: cd %t && %flang -fsyntax-only -module-dir%t/dir-flang %s
|
|
! RUN: ls %t/dir-flang/testmodule.mod && not ls %t/testmodule.mod
|
|
|
|
!---------------------------
|
|
! -J <value>
|
|
!---------------------------
|
|
! RUN: rm -rf %t && mkdir -p %t/dir-flang
|
|
! RUN: cd %t && %flang -fsyntax-only -J %t/dir-flang %s
|
|
! RUN: ls %t/dir-flang/testmodule.mod && not ls %t/testmodule.mod
|
|
|
|
!------------------------------
|
|
! -J<value>
|
|
!------------------------------
|
|
! RUN: rm -rf %t && mkdir -p %t/dir-flang
|
|
! RUN: cd %t && %flang -fsyntax-only -J%t/dir-flang %s
|
|
! RUN: ls %t/dir-flang/testmodule.mod && not ls %t/testmodule.mod
|
|
|
|
module testmodule
|
|
type::t2
|
|
end type
|
|
end
|