| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a missing import. | Georg Brandl | 2010-02-06 | 1 | -0/+1 |
| | | |||||
| * | fix incorrect auto-translation of TestSkipped -> unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -2/+2 |
| | | |||||
| * | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -2/+2 |
| | | |||||
| * | Deprecate the dl module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -3/+2 |
| | | |||||
| * | Add ``if __name__ == '__main__'`` to some test files where it didn't take a lot | Brett Cannon | 2008-04-01 | 1 | -18/+23 |
| | | | | | of effort to do so. | ||||
| * | Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c) | Anthony Baxter | 2006-04-09 | 1 | -0/+1 |
| | | | | | | | to load extension modules and now provides the dl module. As a result, sys.setdlopenflags() now works correctly on these systems. (SF patch #1454844) | ||||
| * | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
| * | Patch #404680: disables the nis module and enables the dl module when | Andrew M. Kuchling | 2001-02-27 | 1 | -0/+1 |
| | | | | | | building under Cygwin. Makes some fixes to the dlmodule in order to compile with Cygwin. | ||||
| * | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | | 'verify' iff it's used by a test module... | ||||
| * | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
| * | Raise 'TestSkipped' (from the test_support) module rather than 'ImportError' | Thomas Wouters | 2000-08-04 | 1 | -2/+2 |
| | | | | | | to signify a test that should be marked as 'skipped' rather than 'failed'. Also 'document' it, in README. | ||||
| * | 1. Print the error message (carefully) when a dl.open() fails in verbose mode. | Guido van Rossum | 1999-02-23 | 1 | -3/+4 |
| | | | | | 2. When no test case worked, raise ImportError instead of failing. | ||||
| * | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -13/+13 |
| | | |||||
| * | 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. | |||||
