debugging

This commit is contained in:
Gregory 2023-04-04 21:08:07 -07:00
parent f1c831cf6e
commit 4514b7c737
2 changed files with 4 additions and 1 deletions

View File

@ -687,6 +687,9 @@ def regenerate(self, concretized_root_specs, force=False):
tty.debug("View at %s does not need regeneration." % self.root)
return
print(new_root)
print([(s, os.stat(os.path.join(os.path.dirname(new_root), s)).st_mtime) for s in os.listdir(os.path.dirname(new_root))])
print(specs)
if update_method == "exchange" and os.path.isdir(new_root):
# If new_root is the newest thing in its directory, no need to update
parent = os.path.dirname(new_root)

View File

@ -1334,7 +1334,7 @@ def test_env_updates_view_uninstall(
check_mpileaks_and_deps_in_view(view_dir)
with ev.read("test"):
uninstall("-ay")
print(uninstall("-ay"))
check_viewdir_removal(view_dir)