forked from OSchip/llvm-project
[flang] Port test_any.sh tests to FileCheck: Hand port canondo{08-18} tests
These tests checked for stdout and stderr in the same pipe, which does not come out in a guaranteed order. test_any.sh's FileCheck accepts CHECK lines in any order while FileCheck checks must match in order. Hand port these to pipe stdout to a temp file which is checked with a separate FileCheck RUN line to test it. Differential Revision: https://reviews.llvm.org/D82167
This commit is contained in:
parent
bf57fc1c8e
commit
ae74252341
|
@ -1,4 +1,3 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! See R1131 and C1133
|
||||
|
||||
|
@ -6,7 +5,7 @@
|
|||
! A warning is generated with -Mstandard
|
||||
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -15,7 +14,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo1()
|
||||
do 01 k=1,2
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -15,7 +14,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo0()
|
||||
do 01 j=1,2
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -15,7 +14,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo2()
|
||||
do 01 l=1,2
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -15,7 +14,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo3()
|
||||
real :: a(10, 10), b(10, 10) = 1.0
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo4()
|
||||
real :: a(10, 10), b(10, 10) = 1.0
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo5()
|
||||
real :: a(10, 10), b(10, 10) = 1.0
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo6(a)
|
||||
type whatever
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo7(a)
|
||||
integer :: a(..)
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo8()
|
||||
use iso_fortran_env, only : team_type
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo9()
|
||||
real :: a(10, 10), b(10, 10) = 1.0
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
! RUN: %S/test_any.sh %s %t %f18
|
||||
! Error test -- DO loop uses obsolete loop termination statement
|
||||
! Error test -- DO loop uses obsolete loop termination statement (warning)
|
||||
! See R1131 and C1133
|
||||
|
||||
! By default, this is not an error and label do are rewritten to non-label do.
|
||||
! A warning is generated with -Mstandard
|
||||
|
||||
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
|
||||
! RUN: %f18 -funparse-with-symbols -Mstandard %s 2>%t.stderr | FileCheck %s
|
||||
|
||||
! CHECK: end do
|
||||
|
||||
|
@ -14,7 +13,8 @@
|
|||
! not want to see label do in the unparse only.
|
||||
! CHECK-NOT: do [1-9]
|
||||
|
||||
! CHECK: A DO loop should terminate with an END DO or CONTINUE
|
||||
! RUN: FileCheck --check-prefix=ERR --input-file=%t.stderr %s
|
||||
! ERR: A DO loop should terminate with an END DO or CONTINUE
|
||||
|
||||
subroutine foo10()
|
||||
real :: a(10, 10), b(10, 10) = 1.0
|
||||
|
|
Loading…
Reference in New Issue