14 lines · plain
1! Tests `-module-suffix` frontend option2 3!--------------------------4! RUN lines5!--------------------------6! RUN: rm -rf %t && mkdir -p %t/dir-flang/7! RUN: cd %t && %flang_fc1 -fsyntax-only -module-suffix .f18.mod -module-dir %t/dir-flang %s8! RUN: ls %t/dir-flang/testmodule.f18.mod && not ls %t/dir-flang/testmodule.mod9 10module testmodule11 type::t212 end type13end14