summaryrefslogtreecommitdiff
path: root/flang/test/Driver/module-suffix.f90
blob: df88ccef9bd07b95a3dee78b404154f6ad4853ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! Tests `-module-suffix` frontend option

!--------------------------
! RUN lines
!--------------------------
! RUN: rm -rf %t && mkdir -p %t/dir-flang/
! RUN: cd %t && %flang_fc1 -fsyntax-only -module-suffix .f18.mod -module-dir %t/dir-flang %s
! RUN: ls %t/dir-flang/testmodule.f18.mod && not ls %t/dir-flang/testmodule.mod

module testmodule
  type::t2
  end type
end