{******************************************************************************
GPC standard ISO 7185 test failures
The following failures were found:
=============================================================================== C:\GPC\usr\test>gpc --standard-pascal -Wno-warnings -o fails fails.pas fails.pas:115: error: ISO 7185 Pascal allows only simple constants fails.pas: In main program: fails.pas:136: error: this use of packed array components is an extension of fails.pas:136: error: Borland Pascal, traditional Macintosh Pascal fails.pas:137: error: this use of packed record fields is an extension of Borland fails.pas:137: error: Pascal, traditional Macintosh Pascal ===============================================================================
None of these are valid failures, or indeed even have a reasonable explaination in the standard. Also, all of these used to work fine in GPC:
GNU Pascal version 2.1 (20020510), based on gcc-2.95.3-6 (mingw special)
See the testing details for that compiler:
http://www.moorecad.com/standardpascal/compiler.html
Now, with "--standard-pascal" off:
=============================================================================== C:\GPC\usr\test>gpc -Wno-warnings -o fails fails.pas
C:\GPC\usr\test>fails 1 10 100 2147483647 True False 'too much<eoln> too soon' s/b 'too much<eoln> too soon<eoln> ' ===============================================================================
Items:
1. Integer field default appears to be "1".
This appears to indicate the default fields for integer is set to 1. This is technically valid, but clearly preverts the intent of the language. The "Pascal users manual and report" shows several examples of the field for integer being clearly set to the maximum size of integer. Ie., for a maximum integer of 11 digits including the sign (for +/-2147483647) the default should be 11 digits for integer. The output of numbers in collumns under the assumption that they would correctly spaced for all integers would fail under the current GPC (see again the several examples in the "report"). I have had the discussion with another implementor, and this treatment of defaults falls under "techically valid (by the ISO 7185 standard), but would break examples of the original Pascal as formulated by Wirth", which I consider a quality issue.
I tried this also with the "--standard-pascal" flag on (by commenting out the error causing statements), and got the same result.
Again, this used to pass.
2. Boolean outputs nonstandard.
There is no explaination for the values of boolean. Since they are treated as the strings "true" or "false", there is no possible default field that would deliver the results shown. If the default were 5 (size of 'false') the result would be:
True False
For 4 (size of 'true') it would be:
True Fals
I tried this also with the "--standard-pascal" flag on (by commenting out the error causing statements), and got the same result.
Again, this used to pass.
3. Last line in file without "eoln" not corrected as required by standard.
In ISO 7185 "6.4.3.5 File types" lines without proper eoln are referred to as "partial lines", and are stated not to occur. In effect, the implementation must either make sure that an eoln is always generated at the end of the file, or that on read, an eoln is essentially inserted if missing at the end of the file. In effect, a text file must be completely empty or be structured as a series of whole lines, including an eoln at the end of each line.
I don't believe this ever passed in GPC, but I was told it would be fixed in later revisions.
Here is a -v dump on the GPC used:
=============================================================================== C:\GPC\usr\test>gpc -v Reading specs from /ecos-c/gpc/usr/bin/../lib/gcc/i686-pc-cygwin/3.4.4/specs Configured with: ../configure --verbose --prefix=/usr --exec-prefix=/usr --sysco nfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --inf odir=/usr/share/info --enable-languages=c,pascal --enable-nls --without-included -gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --di sable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug -- enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sj lj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug Thread model: posix gpc version 20051116, based on gcc-3.4.4 ===============================================================================
******************************************************************************}
program fails(output);
const scst = 'this is a string';
type cset = set of char; prec = packed record
i: integer; b: boolean; c: char; r: real; stc: cset;
end;
var i: integer; pavs: packed array [1..10] of cset; parec: prec; ft: text; ca: char;
begin
for i := 1 to 10 do pavs[i] := [chr(i+ord('a'))]; parec.stc := ['b'..'e', 'i'];
writeln(1); writeln(10); writeln(100); writeln(maxint);
writeln(true); writeln(false);
rewrite(ft); writeln(ft, 'too much'); write(ft, 'too soon'); reset(ft); write(''''); while not eof(ft) do begin
if eoln(ft) then write('<eoln>'); read(ft, ca); write(ca)
end; write(''''); writeln(' s/b ''too much<eoln> too soon<eoln> ''');
end.