summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* test_rotor.py: New test of the rotor module.Barry Warsaw1996-12-238-27/+89
| | | | | | | test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet.
* Very very small comment change.Roger E. Masse1996-12-201-1/+1
|
* Many scripts, but small changes. Update the way the scripts obtain theRoger E. Masse1996-12-209-53/+71
| | | | | | | | | | | | | | | | '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 test of the regex moduleBarry Warsaw1996-12-203-0/+92
| | | | | | | [NOTE: testall.py and autotest.py might could go away soon, I've played with Guido's new regrtest.py script and it seems to work well. I'll wait until Guido gives the word to completely switch over -- and change the Makefile too!]
* More and better comments.Roger E. Masse1996-12-201-4/+11
|
* Minor semantic cleanup.Roger E. Masse1996-12-201-3/+3
|
* Output for test script for the SGI imgfile module.Roger E. Masse1996-12-201-0/+1
|
* Test script for the SGI imgfile module.Roger E. Masse1996-12-202-0/+104
|
* 8 bit greyscale test file needed for testing imageop and imgfile.Roger E. Masse1996-12-201-0/+0
|
* Test program for the SGI imageop module.Roger E. Masse1996-12-202-0/+122
|
* test output for SGI imageop C module.Roger E. Masse1996-12-201-0/+1
|
* Two new files (to shut up regrtest).Guido van Rossum1996-12-202-0/+30
|
* Added example DL for SGI IRIX.Guido van Rossum1996-12-201-0/+2
|
* Added test for minmax.Guido van Rossum1996-12-201-0/+7
|
* New regression test harness. See usage message / doc string.Guido van Rossum1996-12-201-0/+170
|
* Import verbose flag from test_support instead of testing __name__.Guido van Rossum1996-12-201-5/+1
|
* Set test_support.verbose to 0, to signal tests only to generateGuido van Rossum1996-12-201-0/+2
| | | | portable output.
* Add verbose flag for regression test to clear.Guido van Rossum1996-12-201-0/+2
|
* Test of the operator moduleBarry Warsaw1996-12-183-0/+78
|
* Test script output for the UNIX group file access module (grp)Roger E. Masse1996-12-181-0/+1
|
* Test script for the UNIX group file access module (grp)Roger E. Masse1996-12-182-0/+25
|
* Different operation in verbose mode: show the supported nonstandardGuido van Rossum1996-12-181-2/+16
| | | | options. Also added two: %n and %t (newline and tab character).
* In lieu of harness rewrite, fixed problem with test_thread ImportErrorBarry Warsaw1996-12-181-17/+14
| | | | triggering a bogus TestFailed exception.
* Test output for the GNU dbm module (gdbm)Roger E. Masse1996-12-171-0/+1
|
* Test script for the GNU dbm module (gdbm)Roger E. Masse1996-12-172-0/+36
|
* Added the test output for fcntl.Roger E. Masse1996-12-171-0/+1
|
* Added a test script for the fcntl C module.Roger E. Masse1996-12-172-0/+32
|
* Output for _xdr module testBarry Warsaw1996-12-171-0/+1
|
* A test of the _xdrmodule (not the entire xdr.py module).Barry Warsaw1996-12-171-0/+24
|
* Added _xdrmodule testBarry Warsaw1996-12-171-0/+1
|
* (test_thread): output from thread testBarry Warsaw1996-12-161-0/+6
|
* (test_thread.py): modifications to quiet it up when not running as a script.Barry Warsaw1996-12-162-6/+17
| | | | (testall.py): added test_thread to the list of regression tests.
* (sgmllib.py): Partial acceptance of patch from David LeonardFred Drake1996-12-161-1/+1
| | | | | | | | <leonard@dstc.edu.au>; allows hyphen and period in the middle of attribute names. Still not allowed as first character; as first character these are illegal in the Reference Concrete Syntax, and we've not identified any use of these characters as the first char in an attribute name in deployment on the web.
* Updated test_crypt test to jive with bwarsaw testing styleRoger E. Masse1996-12-161-1/+7
|
* Revised output for test_cryptRoger E. Masse1996-12-161-1/+0
|
* Revised test for errno ala bwarsaw's testing paradigm.Roger E. Masse1996-12-161-5/+8
|
* Output files for test_dl and test_errnoRoger E. Masse1996-12-162-0/+2
|
* Added test_dl to harnessRoger E. Masse1996-12-161-0/+1
|
* Revised strategy for testing recomended by bwarsawRoger E. Masse1996-12-161-26/+28
|
* Added test_errno to the test suiteRoger E. Masse1996-12-162-0/+45
|
* Test for the dl module. This only works for SunOS and Solaris.Roger E. Masse1996-12-131-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.
* nonstandard_expectations is only added when in verbose mode, so weBarry Warsaw1996-12-131-2/+1
| | | | | don't need the if test for verbosity when checking for results of an unsupported option.
* Hmm, now that I think about it, we *can* use time.time() and 'date' ifBarry Warsaw1996-12-131-6/+8
| | | | running verbose.
* More or less portabilized.Barry Warsaw1996-12-131-7/+11
| | | | | | | | 1. If a conversion isn't supported on the current platform, just ignore it, unless running as a script (i.e. verbose) 2. Don't use time.time() and os.popen('date') to get the raw values. These will always be different!
* FixedBarry Warsaw1996-12-131-2/+0
|
* Added quote_plus() and unquote_plus(), to do space/plus substitutionsGuido van Rossum1996-12-131-0/+14
| | | | for form field values.
* Output file for module struct testBarry Warsaw1996-12-131-0/+3
|
* Added support for 4-channel on SGI.Guido van Rossum1996-12-131-1/+7
| | | | Allow specifying the test file on the command line.
* Added QUADRO.Guido van Rossum1996-12-132-0/+2
|
* Fixed conversion between seconds and milliseconds.Guido van Rossum1996-12-122-2/+4
|