aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorThomas Koenig <Thomas.Koenig@online.de>2007-01-15 17:39:28 +0000
committerThomas Koenig <tkoenig@gcc.gnu.org>2007-01-15 17:39:28 +0000
commitbc31cbf4a5126a58237991238411b09df982a655 (patch)
tree0110f200e6d1073bd8677b6725e055fbdf8f0f3f /gcc
parent226d4e948270e90d0c26a56ba259a6bb05364719 (diff)
downloadgcc-bc31cbf4a5126a58237991238411b09df982a655.zip
gcc-bc31cbf4a5126a58237991238411b09df982a655.tar.gz
gcc-bc31cbf4a5126a58237991238411b09df982a655.tar.bz2
string_0xfe_0xff_1.f90: Use char instead of achar for 0xff to avoid the "Extended ASCII not...
2007-01-15 Thomas Koenig <Thomas.Koenig@online.de> * gfortran.dg/string_0xfe_0xff_1.f90: Use char instead of achar for 0xff to avoid the "Extended ASCII not implemented" error message. From-SVN: r120800
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f902
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b8cf1a9..ebed226a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-15 Thomas Koenig <Thomas.Koenig@online.de>
+
+ * gfortran.dg/string_0xfe_0xff_1.f90: Use char instead
+ of achar for 0xff to avoid the "Extended ASCII not
+ implemented" error message.
+
2007-01-15 Paul Thomas <pault@gcc.gnu.org>
PR fortran/28172
diff --git a/gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f90 b/gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f90
index e3ea042..16867f0 100644
--- a/gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f90
+++ b/gcc/testsuite/gfortran.dg/string_0xfe_0xff_1.f90
@@ -3,5 +3,5 @@
! as characters, of bytes 0xfe and 0xff.
program main
if (char (254) /= "þ") call abort
- if (achar (255) /= "ÿ") call abort
+ if (char (255) /= "ÿ") call abort
end program main