mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Fixed _sys_home computation and added diagnostics for Windows buildbot failures.
This commit is contained in:
parent
0b43bcf528
commit
7e203498d1
3 changed files with 8 additions and 2 deletions
|
@ -76,7 +76,10 @@ class BasicTest(BaseTest):
|
|||
data = self.get_text_file_contents(self.bindir, self.ps3name)
|
||||
self.assertTrue(data.startswith('#!%s%s' % (self.env_dir, os.sep)))
|
||||
fn = self.get_env_file(self.bindir, self.exe)
|
||||
self.assertTrue(os.path.exists(fn), 'File %r exists' % fn)
|
||||
if not os.path.exists(fn): # diagnostics for Windows buildbot failures
|
||||
print('Contents of %r:' % self.bindir)
|
||||
print(' %r' % os.listdir(self.bindir))
|
||||
self.assertTrue(os.path.exists(fn), 'File %r should exist.' % fn)
|
||||
|
||||
def test_overwrite_existing(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue