summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g77.dg
diff options
context:
space:
mode:
authortoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>2001-09-22 10:36:11 +0000
committertoon <toon@138bc75d-0d04-0410-961f-82ee72b054a4>2001-09-22 10:36:11 +0000
commit90b1355d457745b69069ff403d4a4927f72aa8f4 (patch)
treed98849f4041a9bf96efa09ebbfc18356a08c45cc /gcc/testsuite/g77.dg
parent9175312a0e4a6124a17ed2fea5bcbdfe2d77271f (diff)
downloadgcc-90b1355d457745b69069ff403d4a4927f72aa8f4.tar.gz
2001-09-22 George Helffrich <george@geo.titech.ac.jp>
* g77.dg/strlen0.f: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45748 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g77.dg')
-rw-r--r--gcc/testsuite/g77.dg/strlen0.f95
1 files changed, 95 insertions, 0 deletions
diff --git a/gcc/testsuite/g77.dg/strlen0.f b/gcc/testsuite/g77.dg/strlen0.f
new file mode 100644
index 00000000000..79439514726
--- /dev/null
+++ b/gcc/testsuite/g77.dg/strlen0.f
@@ -0,0 +1,95 @@
+C Substring range checking test program, to check behavior with respect
+C to X3J3/90.4 paragraph 5.7.1.
+C
+C Patches relax substring checking for subscript expressions in order to
+C simplify coding (elimination of length checks for strings passed as
+C parameters) and to avoid contradictory behavior of subscripted substring
+C expressions with respect to unsubscripted string expressions.
+C
+C Key part of 5.7.1 interpretation comes down to statement that in the
+C substring expression,
+C v ( e1 : e2 )
+C 1 <= e1 <= e2 <= len to be valid, yet the expression
+C v ( : )
+C is equivalent to
+C v(1:len(v))
+C
+C meaning that any statement that reads
+C str = v // 'tail'
+C (where v is a string passed as a parameter) would require coding as
+C if (len(v) .gt. 0) then
+C str = v // 'tail'
+C else
+C str = 'tail'
+C endif
+C to comply with the standard specification. Under the stricter
+C interpretation, functions strcat and strlat would be incorrect as
+C written for null values of str1 and/or str2.
+C
+C This code compiles and runs without error on
+C SunOS 4.1.3 f77 (-C option)
+C SUNWspro SparcCompiler 4.2 f77 (-C option)
+C (and with proposed patches, gcc-2.9.2 -fbounds-check except for test 6,
+C which is a genuine, deliberate error - comment out to make further
+C tests)
+C
+C { dg-do run }
+C { dg-options "-fbounds-check" }
+C
+C G. Helffrich/Tokyo Inst. Technology Jul 24 2001
+
+ character str*8,strres*16,strfun*16,strcat*16,strlat*16
+
+ str='Hi there'
+
+C Test 1 - (current+patched) two char substring result
+ strres=strfun(str,1,2)
+ write(*,*) 'strres is ',strres
+
+C Test 2 - (current+patched) null string result
+ strres=strfun(str,5,4)
+ write(*,*) 'strres is ',strres
+
+C Test 3 - (current+patched) null string result
+ strres=strfun(str,8,7)
+ write(*,*) 'strres is ',strres
+
+C Test 4 - (current) error; (patched) null string result
+ strres=strfun(str,9,8)
+ write(*,*) 'strres is ',strres
+
+C Test 5 - (current) error; (patched) null string result
+ strres=strfun(str,1,0)
+ write(*,*) 'strres is ',strres
+
+C Test 6 - (current+patched) error
+C strres=strfun(str,20,20)
+C write(*,*) 'strres is ',strres
+
+C Test 7 - (current+patched) str result
+ strres=strcat(str,'')
+ write(*,*) 'strres is ',strres
+
+C Test 8 - (current) error; (patched) str result
+ strres=strlat('',str)
+ write(*,*) 'strres is ',strres
+
+ end
+
+ character*(*) function strfun(str,i,j)
+ character str*(*)
+
+ strfun = str(i:j)
+ end
+
+ character*(*) function strcat(str1,str2)
+ character str1*(*), str2*(*)
+
+ strcat = str1 // str2
+ end
+
+ character*(*) function strlat(str1,str2)
+ character str1*(*), str2*(*)
+
+ strlat = str1(1:len(str1)) // str2(1:len(str2))
+ end