mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
Fix test failure for shared builds caused by #1326113 fix
This commit is contained in:
parent
ccddc474c3
commit
2a57a36368
1 changed files with 2 additions and 1 deletions
|
@ -187,7 +187,8 @@ class BuildExtTestCase(TempdirManager,
|
|||
cmd = build_ext(dist)
|
||||
cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep
|
||||
cmd.finalize_options()
|
||||
self.assertEqual(cmd.library_dirs, ['my_lib_dir', 'other_lib_dir'])
|
||||
self.assertIn('my_lib_dir', cmd.library_dirs)
|
||||
self.assertIn('other_lib_dir', cmd.library_dirs)
|
||||
|
||||
# make sure rpath is turned into a list
|
||||
# if it's a string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue