mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
bpo-40492: Fix --outfile with relative path when the program changes it working dir (GH-19910)
(cherry picked from commit 3c0ac18504
)
This commit is contained in:
parent
e5c7ac7a22
commit
7c949020ef
4 changed files with 28 additions and 1 deletions
|
@ -6,7 +6,7 @@ import unittest
|
|||
import os
|
||||
from difflib import unified_diff
|
||||
from io import StringIO
|
||||
from test.support import TESTFN, run_unittest, unlink
|
||||
from test.support import TESTFN, run_unittest, unlink, temp_dir, change_cwd
|
||||
from contextlib import contextmanager
|
||||
|
||||
import profile
|
||||
|
@ -111,6 +111,20 @@ class ProfileTest(unittest.TestCase):
|
|||
assert_python_ok('-m', self.profilermodule.__name__,
|
||||
'-m', 'timeit', '-n', '1')
|
||||
|
||||
def test_output_file_when_changing_directory(self):
|
||||
with temp_dir() as tmpdir, change_cwd(tmpdir):
|
||||
os.mkdir('dest')
|
||||
with open('demo.py', 'w') as f:
|
||||
f.write('import os; os.chdir("dest")')
|
||||
|
||||
assert_python_ok(
|
||||
'-m', self.profilermodule.__name__,
|
||||
'-o', 'out.pstats',
|
||||
'demo.py',
|
||||
)
|
||||
|
||||
self.assertTrue(os.path.exists('out.pstats'))
|
||||
|
||||
|
||||
def regenerate_expected_output(filename, cls):
|
||||
filename = filename.rstrip('co')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue