Test 9 from FM905.f tests the splitting of long character strings at the
80-character boundary when using list-directed output. There are
2 issues that make it difficult to keep this test in the test-suite in
its current form:
- One of the character constants contains only digits, which makes
fpcmp interpret it as a very large number rather than a character
constant. This is only really a problem because of issue #2:
- The standard is not strict about the number of spaces that can
crop up in list-directed output, which means that different compilers
will reach column 80 at different points in the character constant, and
therefore fpcmp will either see one very large number or 2 smaller but
somewhat arbitrary numbers, depending on where the newline was inserted.
This patch changes the problematic character constant to use letters
instead of digits. Since whitespaces are ignored, this fixes the issue.