OSDN Git Service

2011-02-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
authorjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 19 Feb 2011 15:21:05 +0000 (15:21 +0000)
committerjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 19 Feb 2011 15:21:05 +0000 (15:21 +0000)
PR libgfortran/47567
* gfortran.dg/fmt_f0_1.f90: Update test.
Fix previous log entry.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170319 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/fmt_f0_1.f90

index f1076f6..fd5066b 100644 (file)
@@ -1,12 +1,7 @@
-2011-02-19  Paul Thomas  <pault@gcc.gnu.org>
+2011-02-19  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
 
-       PR fortran/47348
-       * trans-array.c (get_array_ctor_all_strlen): Move up in file.
-       (get_array_ctor_var_strlen): Add block dummy and add call to
-       get_array_ctor_all_strlen instead of giving up on substrings.
-       Call gcc_unreachable for default case.
-       (get_array_ctor_strlen): Add extra argument to in call to
-       get_array_ctor_var_strlen.
+       PR libgfortran/47567
+       * gfortran.dg/fmt_f0_1.f90: Update test.
 
 2011-02-19  Paul Thomas  <pault@gcc.gnu.org>
 
 
 2011-02-19  Paul Thomas  <pault@gcc.gnu.org>
 
index 166846b..e4e92b1 100644 (file)
  if (str.ne."0.000") call abort
  write (str,'(f0.4)') x
  if (str.ne."0.0000") call abort
  if (str.ne."0.000") call abort
  write (str,'(f0.4)') x
  if (str.ne."0.0000") call abort
+ write (str,'(F0.0)') 0.0
+ if (str.ne."0.") call abort
+ write (str,'(F0.0)') 0.001
+ if (str.ne."0.") call abort
+ write (str,'(F0.0)') 0.01
+ if (str.ne."0.") call abort
+ write (str,'(F0.0)') 0.1
+ if (str.ne."0.") call abort
+ write (str,'(F1.0)') -0.0
+ if (str.ne."0") call abort
+ write (str,'(F1.0)') 0.001
+ if (str.ne."*") call abort
+ write (str,'(F1.0)') 0.01
+ if (str.ne."*") call abort
+ write (str,'(F1.0)') 0.1
+ if (str.ne."*") call abort
+ write (str,'(F2.0)') -0.001
+ if (str.ne."*") call abort
+ write (str,'(F2.0)') -0.01
+ if (str.ne."**") call abort
+ write (str,'(F2.0)') -0.1
+ if (str.ne."**") call abort
+ write (str,'(F0.2)') 0.0
+ if (str.ne.".00") call abort
+ write (str,'(F0.0)') -0.0
+ if (str.ne."-0.") call abort
+ write (str,'(F0.1)') -0.0
+ if (str.ne."-.0") call abort
+ write (str,'(F0.2)') -0.0
+ if (str.ne."-.00") call abort
+ write (str,'(F0.3)') -0.0
+ if (str.ne."-.000") call abort
  END  
  END