(self)
| 941 | self.run_tests(args) |
| 942 | |
| 943 | def test_module_from_test_autotest(self): |
| 944 | # from test import autotest |
| 945 | code = 'from test import autotest' |
| 946 | args = [*self.python_args, '-c', code, |
| 947 | *self.regrtest_args, *self.tests] |
| 948 | self.run_tests(args) |
| 949 | |
| 950 | def test_script_autotest(self): |
| 951 | # Lib/test/autotest.py |