# # # patch "ChangeLog" # from [d5263422c54b4f158b09166c0b0c4921b55fe6ee] # to [c1ee9064be33f06d3e4552f554c2f88785d72235] # # patch "tests/netsync_permissions_wildcards/__driver__.lua" # from [c37b3b8d12a534081ab2cdee9af046cb1014e29c] # to [5bbffb56920e5888cca493016e2658898a2894f7] # ============================================================ --- ChangeLog d5263422c54b4f158b09166c0b0c4921b55fe6ee +++ ChangeLog c1ee9064be33f06d3e4552f554c2f88785d72235 @@ -1,11 +1,17 @@ 2006-12-09 Richard Levitte + * tests/netsync_permissions_wildcards/__driver__.lua: + Don't forget to get() read-permissions and write-permissions. + Also, netsync.start should use the full blown netsync.lua, + not the minimal start. + +2006-12-09 Richard Levitte + * tests/netsync_permissions_wildcards/__driver__.lua, tests/netsync_permissions_wildcards/read-permissions, tests/netsync_permissions_wildcards/write-permissions, testsuite.lua: Test how well netsync works when read-permissions contains wildcards as part of the pattern. - THIS IS REALLY A BUG REPORT 2006-12-08 Richard Levitte ============================================================ --- tests/netsync_permissions_wildcards/__driver__.lua c37b3b8d12a534081ab2cdee9af046cb1014e29c +++ tests/netsync_permissions_wildcards/__driver__.lua 5bbffb56920e5888cca493016e2658898a2894f7 @@ -1,11 +1,14 @@ netsync.setup() include("/common/netsync.lua") mtn_setup() netsync.setup() -srv = netsync.start({"--confdir=."}, nil, true) +check(get("read-permissions")) +check(get("write-permissions")) +srv = netsync.start({"--confdir=."}, nil, false) + -- Try pushing just one exact branch addfile("testfile1", "test file 1") commit("testbranch", "testfile")