mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00

(testall.out): obsolete. see individual test output files in the Output directory. (testall.py): now contains only the list of all tests (autotest.py): The new testing harness. Supports -g option to generate output files instead of verifying; -w option to warn about non-tested optional modules; additional command line arguments to generate or test individual tests (useful for generating output file of new tests).
19 lines
391 B
Python
19 lines
391 B
Python
# This file now contains only the list of separate regression tests.
|
|
# All of the testing harness is now contained in autotest.py.
|
|
|
|
tests = ['test_grammar',
|
|
'test_opcodes',
|
|
'test_operations',
|
|
'test_builtin',
|
|
'test_exceptions',
|
|
'test_types',
|
|
'test_math',
|
|
'test_time',
|
|
'test_array',
|
|
'test_strop',
|
|
'test_md5',
|
|
'test_cmath',
|
|
'test_crypt',
|
|
'test_dbm',
|
|
'test_new',
|
|
]
|