(self, args, isolated=True, **kw)
| 808 | return proc |
| 809 | |
| 810 | def run_python(self, args, isolated=True, **kw): |
| 811 | extraargs = [] |
| 812 | if 'uops' in sys._xoptions: |
| 813 | # Pass -X uops along |
| 814 | extraargs.extend(['-X', 'uops']) |
| 815 | cmd = [sys.executable, *extraargs, '-X', 'faulthandler'] |
| 816 | if isolated: |
| 817 | cmd.append('-I') |
| 818 | cmd.extend(args) |
| 819 | proc = self.run_command(cmd, **kw) |
| 820 | return proc.stdout |
| 821 | |
| 822 | |
| 823 | class CheckActualTests(BaseTestCase): |
no test coverage detected