summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
Commit message (Collapse)AuthorAgeFilesLines
* Patch #995782: Add FreeBSD 5 expectations. Will backport to 2.3.Martin v. Löwis2004-07-261-0/+1
|
* test_codecmaps_hk is also expected to be skipped when a mapping fileHye-Shik Chang2004-07-191-1/+2
| | | | isn't available. (Spotted by Raymond Hettinger)
* Move Decimal from the sandbox into production.Raymond Hettinger2004-07-011-1/+5
|
* add -L flag to cause leaks(1) command to run just before exitSkip Montanaro2004-06-061-2/+13
|
* Patch #868499, adds -T option for code coverage. The implementation is aBarry Warsaw2004-02-071-30/+51
| | | | | | fairly simpleminded adaptation of Zope3's test.py -T flag. I also changed some booleans to use True/False where appropriate.
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-9/+10
| | | | | Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!
* test_applesingle is an expected skip almost anywhere.Guido van Rossum2003-11-201-29/+40
|
* test_applesingle is an expected skip on Win32Raymond Hettinger2003-11-201-0/+1
|
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-3/+2
| | | | | | | | * Install the unittests, docs, newsitem, include file, and makefile update. * Exercise the new functions whereever sets.py was being used. Includes the docs for libfuncs.tex. Separate docs for the types are forthcoming.
* Add test__locale to expected skip list for Darwin.Brett Cannon2003-10-131-0/+1
|
* test__locale (two underscores) can't pass on Windows: RADIXCHAR doesn'tTim Peters2003-09-201-0/+1
| | | | | exist, and neither do any of the specific 5-letter locale names the test is looking for.
* Restored commented-out line checked in by mistake.Tim Peters2003-07-231-1/+1
|
* locale-restoration code: Don't leave comparison to None implicit. ForTim Peters2003-07-231-1/+1
| | | | | all I know, the original locale may be '' (I don't think that's possible, but ...), and if so we would certainly want to restore it.
* Patch #775784: YA Cygwin expected regression test skip patchJason Tishler2003-07-221-0/+1
| | | | This patch just adds test_ioctl to the list of expected skips for Cygwin.
* Patch #746801: FreeBSD 4 expected failures, by Charles Swiger.Martin v. Löwis2003-06-071-0/+30
|
* User cStringIO instead of StringIO.Raymond Hettinger2003-05-171-2/+2
|
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-0/+2
| | | | riscospath.extsep, and use os.extsep throughout.
* the new bsddb185 module is an expected skip on most platforms (this may notSkip Montanaro2003-05-061-0/+12
| | | | be needed - just being anal)
* remove test_socketserver from the skip listsSkip Montanaro2003-04-241-11/+0
|
* Revert Patch #670715: iconv support.Martin v. Löwis2003-04-031-4/+0
|
* Move Mac/Windows specific expected skips from each platform listNeal Norwitz2003-03-291-49/+8
| | | | | to the ExpectedSkips class. Add test_scriptpackages to Mac only list. Add test_unicode_file to Windows only list.
* Add 'audio' resource.Guido van Rossum2003-03-111-1/+5
| | | | | | | ALERT! A month ago or so I made test_ossaudiodev.py require the 'audio' resource, but I didn't make the necessary changes to regrtest.py. This means that *nobody* has been testing the oss module all that time!
* Test_ioctl and test_tarfile are skipped on MacOS9.Jack Jansen2003-03-071-0/+2
|
* test_ioctl is an expected skip on Windows.Tim Peters2003-03-041-0/+1
|
* Fix SF bugs #692951 and 692988, test_timeout.py needs 'network' resourceNeal Norwitz2003-02-281-0/+7
| | | | | require -u network to run test_timeout since it fails when not connected to a network.
* The macfs, macostools, and plistlib should not be expected to runFred Drake2003-02-261-0/+33
| | | | | beyond Mac OS and Darwin. I'm not even sure they should be run on Darwin, but I'll let someone more knowledgable on that tell us.
* Expect to skip test_iconv_codecs on MacOSX.Jack Jansen2003-02-231-0/+1
|
* Checking mac-specific stuff from the 2.3a2 branch in on the trunk.Jack Jansen2003-02-211-0/+1
|
* Whitespace normalization.Tim Peters2003-02-191-1/+1
|
* test_posix is an expected skip on Win32. Also fixed test_posix toTim Peters2003-02-171-0/+1
| | | | import from test.test_support instead of directly from test_support.
* - The audio driver tests (test_ossaudiodev.py andGuido van Rossum2003-02-141-0/+2
| | | | | | | test_linuxaudiodev.py) are no longer run by default. This is because they don't always work, depending on your hardware and software. To run these tests, you must use an invocation like ./python Lib/test/regrtest.py -u audio test_ossaudiodev
* Re-enable compiling ossaudiodev now that it seems to work again.Guido van Rossum2003-02-131-1/+0
|
* Expect test_ossaudiodev to skip on Linux, too. (It's broken.Guido van Rossum2003-02-121-0/+1
| | | | Volunteers wanted to fix it!)
* Patch #551977: Regression exceptions for cygwinJason Tishler2003-02-051-0/+1
| | | | Applied the skip test_ossaudiodev patch.
* test_support.requires(): Instead of raising TestSkipped, raise a newFred Drake2003-02-031-1/+9
| | | | | | | | | exception, ResourceDenied. This is used to distinguish between tests that are skipped for other reasons (platform support, missing data, etc.) from those that are skipped because a "resource" has not been enabled. This prevents those tests from being reported as unexpected skips for the platform; those should only be considered unexpected skips if the resource were enabled.
* Remove test_b1 and test_b2 from the list of testsWalter Dörwald2003-02-031-2/+0
| | | | | that are no real tests, because test_b1 and test_b2 no longer exist. (Spotted by Raymond Hettinger)
* - The mac-specific tests should also be run on darwin.Jack Jansen2003-01-291-1/+2
| | | | - Added test_aepack to the mac/darwin specific tests.
* Expect test_macostools and test_macfs to get skipped wheneverTim Peters2003-01-291-24/+8
| | | | | sys.platform != mac. Likewise expect test_win{reg,sound} to get skipped on non-win32 platforms.
* Repaired spelling of "test_iconv_codecs" in various expected-skip lists.Tim Peters2003-01-271-3/+3
|
* Patch #670715: Universal Unicode Codec for POSIX iconv.Martin v. Löwis2003-01-261-0/+3
|
* Updated the list of expected skips for MacPython-OS9.Jack Jansen2003-01-081-0/+8
|
* add list of expected skips for the OS/2 EMX portAndrew MacIntyre2002-12-311-0/+28
|
* Updated the expected skips for MacOSX.Jack Jansen2002-12-301-0/+3
|
* Added test_ossaudiodev to expected skips on Windows.Tim Peters2002-12-101-0/+1
|
* Add a Cygwin skip mentioned by Jason Tishler.Tim Peters2002-12-051-1/+1
|
* Patch #551977: Regression exceptions for cygwinJason Tishler2002-12-051-0/+22
| | | | | | This patch updates regrtest.py to understand which tests are normally skipped under Cygwin. The list of tests was verified with the Cygwin Python maintainer.
* Rearrange test_socket_ssl so that a skip is expected iff the networkTim Peters2002-12-041-8/+7
| | | | resource isn't enabled or the socket module doesn't support ssl.
* Some more expected skips on OSX.Guido van Rossum2002-12-031-0/+3
|
* On Max OSX, try increasing the stack limit to 2048 so test_re andGuido van Rossum2002-12-021-0/+16
| | | | test_sre won't die with a SegFault.
* Add a way to say "use any resource except A". For example, to runFred Drake2002-11-261-3/+14
| | | | | allow the use of any resource except bsddb, give the option "-uall,-bsddb".