mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 03:56:42 +00:00

Add three tests for lock-stmt. The first includes standard-conforming statements, the second includes non-standard-conforming statements because of errors where something unexpected occurs, such as a missing lock-variable, and the third includes non-standard-conforming statements because of semantic errors, such as type or rank mismatches. Reviewed By: rouson Differential Revision: https://reviews.llvm.org/D136628
56 lines
1.2 KiB
Fortran
56 lines
1.2 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! This test checks for semantic errors in lock statements based on the
|
|
! statement specification in section 11.6.10 of the Fortran 2018 standard.
|
|
|
|
program test_lock_stmt
|
|
use iso_fortran_env, only: lock_type
|
|
implicit none
|
|
|
|
character(len=128) error_message
|
|
integer status
|
|
logical bool
|
|
type(lock_type) :: lock_var[*]
|
|
|
|
!___ non-standard-conforming statements ___
|
|
|
|
! missing required lock-variable
|
|
|
|
!ERROR: expected '('
|
|
lock
|
|
|
|
!ERROR: expected '='
|
|
lock()
|
|
|
|
!ERROR: expected ')'
|
|
lock(acquired_lock=bool)
|
|
|
|
!ERROR: expected ')'
|
|
lock(stat=status)
|
|
|
|
!ERROR: expected ')'
|
|
lock(errmsg=error_message)
|
|
|
|
! specifiers in lock-stat-list are not variables
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, acquired_lock=.true.)
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, stat=1)
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, errmsg='c')
|
|
|
|
! specifier typos
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, acquiredlock=bool, stat=status, errmsg=error_message)
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, acquired_lock=bool, status=status, errmsg=error_message)
|
|
|
|
!ERROR: expected ')'
|
|
lock(lock_var, acquired_lock=bool, stat=status, errormsg=error_message)
|
|
|
|
end program test_lock_stmt
|