mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 21:56:34 +00:00

flang/test/Semantics/test_errors,py only compares actual error messages with expected error messages. Many tests have expected warning messages in them, but they are not checked. A forthcoming change adds several new warning and explanatory messages to the compiler, and these messages must be testable. So (re-?) enable non-error message checking in test_errors.py and adjust some existing tests to get them to pass. Warning messages related to host-specific folding conditions will not be emitted on all platforms, so they will continue to be ignored. Differential Revision: https://reviews.llvm.org/D136479
14 lines
390 B
Fortran
14 lines
390 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic -Werror
|
|
! Check that we get portability warning for the extension:
|
|
! - exponent-letter 'Q'
|
|
|
|
subroutine s
|
|
real :: realvar1 = 4.0
|
|
real :: realvar2 = 4.0D6
|
|
real :: realvar3 = 4.0_8
|
|
real :: realvar4 = 4.0E6_4
|
|
real :: realvar5 = 4.0E6_8
|
|
!PORTABILITY: nonstandard usage: Q exponent
|
|
real :: realvar6 = 4.0Q6
|
|
end subroutine s
|