|
From: <bc...@wo...> - 2000-11-16 18:45:14
|
[Schmidmeier, Arno]
> Can the tests run unattended?
> Will and can you move your test suite to sourceforge?
I can make them available, but I will not commit them as part of the
sources. They are of too bad quality to be part of the official jython.
> Are there any other formal test suites available?
There are formal tests Lib/test and parts of the CPython's test suite
can also be used with jython. I use this script, called from
Python2.0/Lib/test:
import regrtest
tests = [
'test_augassign',
'test_binascii',
'test_binhex',
'test_builtin',
'test_contains',
'test_cpickle',
#'test_exceptions',
#'test_extcall',
#'test_format',
'test_grammar',
'test_hash',
'test_long',
'test_math',
'test_md5',
'test_MimeWriter',
#'test_operations',
'test_operator',
'test_pickle',
'test_pkg',
#'test_pow',
#'test_re',
'test_rfc822',
'test_sha',
'test_sre',
'test_string',
'test_struct',
'test_thread',
'test_time',
#'test_tokenize',
'test_types',
#'test_unicode',
'test_unpack',
'test_userdict',
#'test_userlist',
'test_userstring',
]
regrtest.main(tests)
regards,
finn
|