Andris Pavenis wrote:
Here are test results of gpc-20041218 with gcc-3.3.5 for DJGPP (I used recent CVS version DJGPP v2.04)
gpc 20041218, based on gcc-3.3.5, flags: -g -O3 -W -Wall -Wno-unused GPC-TEST-BEGIN ========================== TEST aregextest.pas: SKIPPED: librx not installed TEST fjf165a.pas: SKIPPED: German locale not installed TEST longr2.pas: SKIPPED: no LongReal math routines available TEST reset.pas: failed TEST y2k.pas: failed 2005 2005
========================== GPC-TEST-END
reset.pas is a bit questionable (no idea what it was meant to test actually, seems to be quite old). I'm changing the test program.
Additionally I had to patch test_run to avoid DJGPP port of bash crashing (both bash-2.0.4 from v2gnu and bash-2.0.5b):
--- test_run~1 2005-02-17 22:54:30.000000000 +0000 +++ test_run 2005-02-17 20:12:44.000000000 +0000 @@ -296,7 +296,8 @@ echo "failed" fi fi
- return 0 # IRIX's shell wants this, otherwise it aborts after a failed command!?
+true +# return 0 # IRIX's shell wants this, otherwise it aborts after a failed command!? }
n=0
It is perhaps a due to some problem with DJGPP port of bash.
I hope this will work on IRIX as well. I'll find out when I test there next time. Otherwise I'll undo the change, and the DJGPP bash bug need to be fixed (well, it should be fixed anyway, of course, if it's really such a bug).
Frank