view flang/test/Driver/module-suffix.f90 @ 252:1f2b6ac9f198 llvm-original

LLVM16-1
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 18 Aug 2023 09:04:13 +0900
parents c4bab56944e8
children
line wrap: on
line source

! 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