X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README.beos;h=cc9f44b14dec8763c5c083a4d66e00e4e8b78a4d;hb=653cdf162251ec178accc888f645b3bc6fbe27a6;hp=7458672cee902a1929d71b23284e1ae8861b929b;hpb=a83b6f466440987720492416f8091f2530a9ab41;p=p5sagit%2Fp5-mst-13.2.git diff --git a/README.beos b/README.beos index 7458672..cc9f44b 100644 --- a/README.beos +++ b/README.beos @@ -57,3 +57,57 @@ please email me. Tom Spindler dogcow@isi.net +=head2 Update 2002-05-30 + +The following tests fail on 5.8.0 Perl in BeOS Personal 5.03: + + t/op/lfs............................FAILED at test 17 + t/op/magic..........................FAILED at test 24 + ext/Fcntl/t/syslfs..................FAILED at test 17 + ext/File/Glob/t/basic...............FAILED at test 3 + ext/POSIX/t/sigaction...............FAILED at test 13 + ext/POSIX/t/waitpid.................FAILED at test 1 + +The reasons for the failures are as follows: + +=over 4 + +=item * + +The t/op/lfs and ext/Fcntl/t/syslfs failures indicate that the +LFS (large file support, files larger than 2 gigabytes) doesn't +work from Perl (BeFS itself is well capable of supporting large +files). What fails is that trying to position the file pointer +past 2 gigabytes doesn't work right, the position gets truncated +to its lower 32 bits. + +=item * + +The op/magic failures look like something funny going on with $0 and +$^X that I can't now figure out: none of the generated pathnames are +wrong as such, they just seem to accumulate "./" prefixes and infixes +in ways that define logic. + +=item * + +The Glob/t/basic indicates a bug in the getpw*() functions: +they do not always return the correct user db entries. + +=item * + +The sigaction #13 means that signal mask doesn't get properly restored +if sigaction returns early. + +=item * + +The waitpid failure means that after there are no more child +processes, waitpid is supposed to start returning -1 (and set +errno to ECHILD). In BeOS, it doesn't seem to. + +=back + +Disclaimer: I just installed BeOS Personal Edition 5.0 and the +Developer Tools, that is the whole extent of my BeOS expertise, +so please don't ask me for further help in BeOS Perl problems. + +jhi@iki.fi