# # patch "ChangeLog" # from [46ced699d4574f6312d70d99481216384ceb156f] # to [99c42d20242000ee1f44f97e7180cca859846262] # # patch "tests/t_netsync_exclude.at" # from [caed6eeeec58a85d35684c6cd8ae9db183a44fa0] # to [92742622e126083db8509144108ae006faed4867] # # patch "tests/t_netsync_globs.at" # from [9d07331154e29c0e432b5c69d997357275c51dc5] # to [fdc7701de9af5a193798b8a25c745d8d15b62086] # # patch "tests/t_netsync_read_permissions.at" # from [d8c9cc08a754ee36cfb0d18e349647bf815733ff] # to [123e1ee25ec04d06cf8b221227e1456e38af732e] # ======================================================================== --- ChangeLog 46ced699d4574f6312d70d99481216384ceb156f +++ ChangeLog 99c42d20242000ee1f44f97e7180cca859846262 @@ -1,5 +1,10 @@ 2005-09-06 Matthew Gregan + * tests/t_netsync_read_permissions.at: Tweak tests so we aren't + trying to serve a bare '*'; works around test hangs due to glob + expansion sillyness on MinGW. + * tests/t_netsync_globs.at: Ditto. + * tests/t_netsync_exclude.at: Ditto. * std_hooks.lua (ignore_file): Add Mac OS X (.DS_Store) and Windows (desktop.ini) per-directory browser configuration files. ======================================================================== --- tests/t_netsync_exclude.at caed6eeeec58a85d35684c6cd8ae9db183a44fa0 +++ tests/t_netsync_exclude.at 92742622e126083db8509144108ae006faed4867 @@ -28,7 +28,7 @@ # pulling everything but them should give revs B1, B2, B3; and only # give branch certs on B1, B3. -NETSYNC_SERVE_START('*' --exclude=branch2 --exclude=branch4) +NETSYNC_SERVE_START('branch*' --exclude=branch2 --exclude=branch4) NETSYNC_CLIENT_RUN(pull, 'branch*') AT_CHECK(MONOTONE2 automate get_revision $B1, [1], [ignore], [ignore]) ======================================================================== --- tests/t_netsync_globs.at 9d07331154e29c0e432b5c69d997357275c51dc5 +++ tests/t_netsync_globs.at fdc7701de9af5a193798b8a25c745d8d15b62086 @@ -21,7 +21,7 @@ COMMIT(2branch1) REV21=`BASE_REVISION` -NETSYNC_SERVE_START("*") +NETSYNC_SERVE_START("*branch*") # check a glob NETSYNC_CLIENT_N_RUN(2, pull, "*anch2") ======================================================================== --- tests/t_netsync_read_permissions.at d8c9cc08a754ee36cfb0d18e349647bf815733ff +++ tests/t_netsync_read_permissions.at 123e1ee25ec04d06cf8b221227e1456e38af732e @@ -34,7 +34,7 @@ end ]) -NETSYNC_SERVE_START(--rcfile=limited_permission.at '*') +NETSYNC_SERVE_START(--rcfile=limited_permission.at 'branch*') NETSYNC_CLIENT_RUN(pull, 'branch*') AT_CHECK(MONOTONE2 automate get_revision $B1, [1], [ignore], [ignore])