forked from OSchip/llvm-project
13 lines
705 B
Fortran
13 lines
705 B
Fortran
! RUN: rm -fr %t && mkdir %t && cd %t
|
|
! RUN: %flang_fc1 -fsyntax-only -fdebug-module-writer %s 2>&1 | FileCheck %s --check-prefix CHECK_CHANGED
|
|
! RUN: %flang_fc1 -fsyntax-only -fdebug-module-writer %s 2>&1 | FileCheck %s --check-prefix CHECK_UNCHANGED
|
|
! RUN: %flang_fc1 -fsyntax-only -fdebug-module-writer %p/Inputs/mod-file-unchanged.f90 2>&1 | FileCheck %s --check-prefix CHECK_UNCHANGED
|
|
! RUN: %flang_fc1 -fsyntax-only -fdebug-module-writer %p/Inputs/mod-file-changed.f90 2>&1 | FileCheck %s --check-prefix CHECK_CHANGED
|
|
|
|
module m
|
|
real :: x(10)
|
|
end module m
|
|
|
|
! CHECK_CHANGED: Processing module {{.*}}.mod: module written
|
|
! CHECK_UNCHANGED: Processing module {{.*}}.mod: module unchanged, not writing
|