Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Try calling getpid() from /usr/lib/libc.so instead of some other | Guido van Rossum | 1997-04-09 | 1 | -4/+1 |
| | | | | random things. | ||||
* | Many scripts, but small changes. Update the way the scripts obtain the | Roger E. Masse | 1996-12-20 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | 'verbose' flag ala GvR updated test harness architecture. Old way: verbose = 0 if __name__ == '__main__': verbose = 1 New way: from test_support import verbose Some other small readablility and functionality updates. | ||||
* | Added example DL for SGI IRIX. | Guido van Rossum | 1996-12-20 | 1 | -0/+2 |
| | |||||
* | Revised strategy for testing recomended by bwarsaw | Roger E. Masse | 1996-12-16 | 1 | -26/+28 |
| | |||||
* | Test for the dl module. This only works for SunOS and Solaris. | Roger E. Masse | 1996-12-13 | 1 | -0/+32 |
I've attempted to make a test that silently exits if either module dl is not present, we're not on a Sun OS, or a standard shared library ('/usr/lib/libresolv.so') is not found... Otherwise, It does a simple test of dlmodule on that library. I *think* this would be ok to add to testall.py but I'll wait till I hear some feedback on the liberalness of this approach. |