1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
---- If you change this code, you will have to regenerate all of the
---- "inodeprints-N" workspaces.
return {
min_format = 1,
creator =
function ()
check(mtn("setup", "-b", "inodeprints-branch", "inodeprints-current"))
chdir("inodeprints-current")
writefile("_MTN/inodeprints")
addfile("testfile1", "blah blah\n")
addfile("testfile2", "asdfas dfsa\n")
check(mtn("attr", "set", "testfile1", "test:attr", "fooooo"),
0, false, false)
commit("inodeprints-branch")
-- make some edits to the files
writefile("testfile1", "new stuff\n")
writefile("testfile2", "more new stuff\n")
-- and some tree rearrangement stuff too
check(mtn("rename", "testfile2", "renamed-testfile2"),
0, false, false)
check(mtn("attr", "set", "renamed-testfile2", "test:attr2", "asdf"),
0, false, false)
check(mtn("attr", "drop", "testfile1", "test:attr"),
0, false, false)
mkdir("newdir")
writefile("newdir/file3", "twas mimsy and the borogroves\n")
check(mtn("add", "newdir", "newdir/file3"), 0, false, false)
check(mtn("refresh_inodeprints"))
chdir("..")
end,
checker =
function (dir, refdir)
-- We can't actually test that the inodeprints file came through
-- intact, because its content is unpredictable. Just make sure
-- it still exists.
check(exists(dir .. "/_MTN/inodeprints"))
end
}
|