OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [parameter_array_init_4.f90] - Rev 749

Go to most recent revision | Compare with Previous | Blame | View Log

! { dg-do run }
! PR fortran/36476
!
IMPLICIT NONE
CHARACTER (len=*) MY_STRING(1:3), my_string_s
PARAMETER ( MY_STRING = (/ "A" , "B", "C" /) )
PARAMETER ( MY_STRING_S = "AB C" )
character(len=*), parameter :: str(2) = [ 'Ac','cc']
character(len=*), parameter :: str_s = 'Acc'

CHARACTER (kind=1,len=*) MY_STRING1(1:3), my_string_s1
PARAMETER ( MY_STRING1 = (/ "A" , "B", "C" /) )
PARAMETER ( MY_STRING_S1 = "AB C" )
character(kind=1,len=*), parameter :: str1(2) = [ 1_'Ac',1_'cc']
character(kind=1,len=*), parameter :: str_s1 = 'Acc'

CHARACTER (kind=4,len=*) MY_STRING4(1:3), my_string_s4
PARAMETER ( MY_STRING4 = (/ 4_"A" , 4_"B", 4_"C" /) )
PARAMETER ( MY_STRING_S4 = 4_"AB C" )
character(kind=4,len=*), parameter :: str4(2) = [ 4_'Ac',4_'cc']
character(kind=4,len=*), parameter :: str_s4 = 4_'Acc'

if(len(MY_STRING)   /= 1) call abort()
if(    MY_STRING(1) /= "A" &
   .or.MY_STRING(2) /= "B" &
   .or.MY_STRING(3) /= "C") call abort()
if(len(MY_STRING_s)  /= 4) call abort()
if(MY_STRING_S /= "AB C") call abort()
if(len(str)        /= 2) call abort()
if(str(1) /= "Ac" .or. str(2) /=  "cc") call abort()
if(len(str_s)      /= 3) call abort()
if(str_s /= 'Acc') call abort()

if(len(MY_STRING1) /= 1) call abort()
if(    MY_STRING1(1) /= 1_"A" &
   .or.MY_STRING1(2) /= 1_"B" &
   .or.MY_STRING1(3) /= 1_"C") call abort()
if(len(MY_STRING_s1)  /= 4) call abort()
if(MY_STRING_S1 /= 1_"AB C") call abort()
if(len(str1)       /= 2) call abort()
if(str1(1) /= 1_"Ac" .or. str1(2) /=  1_"cc") call abort()
if(len(str_s1)     /= 3) call abort()
if(str_s1 /= 1_'Acc') call abort()

if(len(MY_STRING4) /= 1) call abort()
if(    MY_STRING4(1) /= 4_"A" &
   .or.MY_STRING4(2) /= 4_"B" &
   .or.MY_STRING4(3) /= 4_"C") call abort()
if(len(MY_STRING_s4)  /= 4) call abort()
if(MY_STRING_S4 /= 4_"AB C") call abort()
if(len(str4)       /= 2) call abort()
if(str4(1) /= 4_"Ac" .or. str4(2) /=  4_"cc") call abort()
if(len(str_s4)     /= 3) call abort()
if(str_s4 /= 4_'Acc') call abort()
end

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.