]> granicus.if.org Git - python/commitdiff
make sure build_dir.build_lib is synced to the faked build location
authorTarek Ziade <tarek@ziade.org>
Mon, 23 May 2011 15:35:20 +0000 (17:35 +0200)
committerTarek Ziade <tarek@ziade.org>
Mon, 23 May 2011 15:35:20 +0000 (17:35 +0200)
Lib/packaging/tests/test_command_install_lib.py

index 99d47dd621ef295a08ef68f43cafb8aee1e0e5fa..96749e3bf3869267835fabaf8595544115ca0db0 100644 (file)
@@ -67,6 +67,10 @@ class InstallLibTestCase(support.TempdirManager,
         cmd.distribution.packages = [pkg_dir]
         cmd.distribution.script_name = 'setup.py'
 
+        # make sure the build_lib is set the temp dir
+        build_dir = os.path.split(pkg_dir)[0]
+        cmd.get_finalized_command('build_py').build_lib = build_dir
+
         # get_output should return 4 elements
         self.assertEqual(len(cmd.get_outputs()), 4)