llvm-capstone/flang/test/Semantics/random-seed.f90
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

29 lines
1.3 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! NULL() intrinsic function error tests
program test_random_seed
integer :: size_arg
integer, parameter :: size_arg_const = 343
integer, dimension(3), parameter :: put_arg = [9,8,7]
integer :: get_arg_scalar
integer, dimension(3) :: get_arg
integer, dimension(3),parameter :: get_arg_const = [8,7,6]
call random_seed()
call random_seed(size_arg)
call random_seed(size=size_arg)
!ERROR: Actual argument associated with INTENT(OUT) dummy argument 'size=' must be definable
call random_seed(size_arg_const) ! error, size arg must be definable
!ERROR: 'size=' argument has unacceptable rank 1
call random_seed([1, 2, 3, 4]) ! Error, must be a scalar
call random_seed(put = [1, 2, 3, 4])
call random_seed(put = put_arg)
!ERROR: 'size=' argument has unacceptable rank 1
call random_seed(get_arg) ! Error, must be a scalar
call random_seed(get=get_arg)
!ERROR: 'get=' argument has unacceptable rank 0
call random_seed(get=get_arg_scalar) ! Error, GET arg must be of rank 1
!ERROR: Actual argument associated with INTENT(OUT) dummy argument 'get=' must be definable
call random_seed(get=get_arg_const) ! Error, GET arg must be definable
!ERROR: RANDOM_SEED must have either 1 or no arguments
call random_seed(size_arg, get_arg) ! Error, only 0 or 1 argument
end program