diff options
author | Éric Araujo <merwok@netwok.org> | 2012-02-15 17:25:25 +0100 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2012-02-15 17:25:25 +0100 |
commit | 4575afcb53db638232d897aed5e84bb629fc1ecf (patch) | |
tree | 5ba0a51e5cedde4b0f29731512b2c745c6775913 /Lib/packaging/tests/test_command_build_ext.py | |
parent | 1d175f776836ef0106d06ff2f264635df125340e (diff) | |
download | cpython-4575afcb53db638232d897aed5e84bb629fc1ecf.tar.gz cpython-4575afcb53db638232d897aed5e84bb629fc1ecf.zip |
Fix parsing of packaging’s build_ext --libraries option (#1326113)
Diffstat (limited to 'Lib/packaging/tests/test_command_build_ext.py')
-rw-r--r-- | Lib/packaging/tests/test_command_build_ext.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/packaging/tests/test_command_build_ext.py b/Lib/packaging/tests/test_command_build_ext.py index 4883f38a56b..161b00081dd 100644 --- a/Lib/packaging/tests/test_command_build_ext.py +++ b/Lib/packaging/tests/test_command_build_ext.py @@ -141,21 +141,21 @@ class BuildExtTestCase(support.TempdirManager, # make sure cmd.libraries is turned into a list # if it's a string cmd = build_ext(dist) - cmd.libraries = 'my_lib' + cmd.libraries = 'my_lib, other_lib lastlib' cmd.finalize_options() - self.assertEqual(cmd.libraries, ['my_lib']) + self.assertEqual(cmd.libraries, ['my_lib', 'other_lib', 'lastlib']) # make sure cmd.library_dirs is turned into a list # if it's a string cmd = build_ext(dist) - cmd.library_dirs = 'my_lib_dir' + cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep cmd.finalize_options() - self.assertIn('my_lib_dir', cmd.library_dirs) + self.assertEqual(cmd.library_dirs, ['my_lib_dir', 'other_lib_dir']) # make sure rpath is turned into a list - # if it's a list of os.pathsep's paths + # if it's a string cmd = build_ext(dist) - cmd.rpath = os.pathsep.join(['one', 'two']) + cmd.rpath = 'one%stwo' % os.pathsep cmd.finalize_options() self.assertEqual(cmd.rpath, ['one', 'two']) |