Ivan Zhechev 6c1ac141d3 [Flang] Ported test_errors.sh to Python
To enable Flang testing on Windows, shell scripts have to be ported to Python. In this patch the "test_errors.sh" script is ported to python ("test_errors.py"). The RUN line of existing tests was changed to make use of the python script.

Used python regex in place of awk/sed.

Reviewed By: Meinersbur

Differential Revision: https://reviews.llvm.org/D107575
2021-09-06 08:19:42 +00:00

38 lines
1.2 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
module m
! C730 The same type-attr-spec shall not appear more than once in a given
! derived-type-stmt.
!
! R727 derived-type-stmt ->
! TYPE [[, type-attr-spec-list] ::] type-name [( type-param-name-list )]
! type-attr-spec values are:
! ABSTRACT, PUBLIC, PRIVATE, BIND(C), EXTENDS(parent-type-name)
!WARNING: Attribute 'ABSTRACT' cannot be used more than once
type, abstract, public, abstract :: derived1
end type derived1
!WARNING: Attribute 'PUBLIC' cannot be used more than once
type, public, abstract, public :: derived2
end type derived2
!WARNING: Attribute 'PRIVATE' cannot be used more than once
type, private, abstract, private :: derived3
end type derived3
!ERROR: Attributes 'PUBLIC' and 'PRIVATE' conflict with each other
type, public, abstract, private :: derived4
end type derived4
!WARNING: Attribute 'BIND(C)' cannot be used more than once
type, bind(c), public, bind(c) :: derived5
end type derived5
type, public :: derived6
end type derived6
!ERROR: Attribute 'EXTENDS' cannot be used more than once
type, extends(derived6), public, extends(derived6) :: derived7
end type derived7
end module m