Commit 9793abc5 authored by Éric Araujo's avatar Éric Araujo

Fix test failure for shared builds caused by #1326113 fix

parent 366ee899
...@@ -187,7 +187,8 @@ class BuildExtTestCase(TempdirManager, ...@@ -187,7 +187,8 @@ class BuildExtTestCase(TempdirManager,
cmd = build_ext(dist) cmd = build_ext(dist)
cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep
cmd.finalize_options() 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 # make sure rpath is turned into a list
# if it's a string # if it's a string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment