##// END OF EJS Templates
check-code: add more path sep glob checks
Matt Mackall -
r19123:a91894c8 default
parent child Browse files
Show More
@@ -109,6 +109,13 b' utestpats = ['
109 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$',
109 (r'^ changeset .* references (corrupted|missing) \$TESTTMP/.*[^)]$',
110 winglobmsg),
110 winglobmsg),
111 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
111 (r'^ pulling from \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
112 (r'^ reverting .*/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
113 (r'^ cloning subrepo \S+/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
114 (r'^ pushing to \$TESTTMP/.*[^)]$', winglobmsg, '\$TESTTMP/unix-repo$'),
115 (r'^ no changes made to subrepo since.*/.*[^)]$',
116 winglobmsg, '\$TESTTMP/unix-repo$'),
117 (r'^ .*: largefile \S+ not available from file:.*/.*[^)]$',
118 winglobmsg, '\$TESTTMP/unix-repo$'),
112 ],
119 ],
113 # warnings
120 # warnings
114 [
121 [
@@ -391,7 +391,7 b' its working directory does not make its '
391 $ hg -R s update '.^'
391 $ hg -R s update '.^'
392 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
392 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
393 $ hg push
393 $ hg push
394 pushing to $TESTTMP/t
394 pushing to $TESTTMP/t (glob)
395 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
395 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
396 no changes made to subrepo s since last push to $TESTTMP/t/s
396 no changes made to subrepo s since last push to $TESTTMP/t/s
397 no changes made to subrepo t since last push to $TESTTMP/t/t
397 no changes made to subrepo t since last push to $TESTTMP/t/t
@@ -400,7 +400,7 b' its working directory does not make its '
400 [1]
400 [1]
401 $ echo foo >> s/a
401 $ echo foo >> s/a
402 $ hg push
402 $ hg push
403 pushing to $TESTTMP/t
403 pushing to $TESTTMP/t (glob)
404 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
404 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
405 no changes made to subrepo s since last push to $TESTTMP/t/s
405 no changes made to subrepo s since last push to $TESTTMP/t/s
406 no changes made to subrepo t since last push to $TESTTMP/t/t
406 no changes made to subrepo t since last push to $TESTTMP/t/t
@@ -415,7 +415,7 b' committing into a subrepo makes its stor'
415 $ echo foo >> s/ss/a
415 $ echo foo >> s/ss/a
416 $ hg -R s/ss commit -m 'test dirty store detection'
416 $ hg -R s/ss commit -m 'test dirty store detection'
417 $ hg push
417 $ hg push
418 pushing to $TESTTMP/t
418 pushing to $TESTTMP/t (glob)
419 pushing subrepo s/ss to $TESTTMP/t/s/ss (glob)
419 pushing subrepo s/ss to $TESTTMP/t/s/ss (glob)
420 searching for changes
420 searching for changes
421 adding changesets
421 adding changesets
@@ -431,7 +431,7 b' committing into a subrepo makes its stor'
431 a subrepo store may be clean versus one repo but not versus another
431 a subrepo store may be clean versus one repo but not versus another
432
432
433 $ hg push
433 $ hg push
434 pushing to $TESTTMP/t
434 pushing to $TESTTMP/t (glob)
435 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
435 no changes made to subrepo s/ss since last push to $TESTTMP/t/s/ss (glob)
436 no changes made to subrepo s since last push to $TESTTMP/t/s
436 no changes made to subrepo s since last push to $TESTTMP/t/s
437 no changes made to subrepo t since last push to $TESTTMP/t/t
437 no changes made to subrepo t since last push to $TESTTMP/t/t
@@ -798,7 +798,7 b' Try the same, but with pull -u'
798 Try to push from the other side
798 Try to push from the other side
799
799
800 $ hg -R issue1852a push `pwd`/issue1852c
800 $ hg -R issue1852a push `pwd`/issue1852c
801 pushing to $TESTTMP/issue1852c
801 pushing to $TESTTMP/issue1852c (glob)
802 pushing subrepo sub/repo to $TESTTMP/issue1852c/sub/repo (glob)
802 pushing subrepo sub/repo to $TESTTMP/issue1852c/sub/repo (glob)
803 searching for changes
803 searching for changes
804 no changes found
804 no changes found
@@ -316,7 +316,7 b' commit hook on tag used to be run withou'
316 adding test
316 adding test
317 $ hg init repo-tag-target
317 $ hg init repo-tag-target
318 $ hg -R repo-tag --config hooks.commit="\"hg\" push \"`pwd`/repo-tag-target\"" tag tag
318 $ hg -R repo-tag --config hooks.commit="\"hg\" push \"`pwd`/repo-tag-target\"" tag tag
319 pushing to $TESTTMP/repo-tag-target
319 pushing to $TESTTMP/repo-tag-target (glob)
320 searching for changes
320 searching for changes
321 adding changesets
321 adding changesets
322 adding manifests
322 adding manifests
General Comments 0
You need to be logged in to leave comments. Login now