# # # patch "tests/two_parent_workspace_inodeprints/__driver__.lua" # from [0baf291aba45895e4a269ce105057b55638c45ff] # to [9b5379110d0f2750ab71e9abcdef7235630f7a71] # ============================================================ --- tests/two_parent_workspace_inodeprints/__driver__.lua 0baf291aba45895e4a269ce105057b55638c45ff +++ tests/two_parent_workspace_inodeprints/__driver__.lua 9b5379110d0f2750ab71e9abcdef7235630f7a71 @@ -37,3 +37,18 @@ check(qgrep("right", "_MTN/inodeprints") check(fsize("_MTN/inodeprints") ~= 0) check(qgrep("left", "_MTN/inodeprints")) check(qgrep("right", "_MTN/inodeprints")) + +addfile("in-two-parent", "in-two-parent's file content") +sleep(5) +check(mtn("refresh_inodeprints"), 0, false, false) +check(fsize("_MTN/inodeprints") ~= 0) +check(not qgrep("in-two-parent", "_MTN/inodeprints")) +commit() +check(qgrep("in-two-parent", "_MTN/inodeprints")) + +remove("_MTN/inodeprints") +check(mtn("refresh_inodeprints"), 0, false, false) +check(fsize("_MTN/inodeprints") ~= 0) +check(qgrep("left", "_MTN/inodeprints")) +check(qgrep("right", "_MTN/inodeprints")) +check(qgrep("in-two-parent", "_MTN/inodeprints"))