##// END OF EJS Templates
tests: fix the check-code rule for testing non-existent files...
Matt Harbison -
r35463:e28dedf4 @4 default
parent child Browse files
Show More
@@ -185,7 +185,7 b' utestpats = ['
185 185 'use $LOCALIP not an explicit loopback address'),
186 186 (r'^ (?![>$] ).*\$LOCALIP.*[^)]$',
187 187 'mark $LOCALIP output lines with (glob) to help tests in BSD jails'),
188 (r'^ (cat|find): .*: No such file or directory',
188 (r'^ (cat|find): .*: \$ENOENT\$',
189 189 'use test -f to test for file existence'),
190 190 (r'^ diff -[^ -]*p',
191 191 "don't use (external) diff with -p for portability"),
@@ -571,8 +571,7 b" repo12 doesn't have any cached lfs files"
571 571 files. Therefore, the files don't exist in the remote store. Use the files in
572 572 the user cache.
573 573
574 $ find $TESTTMP/repo12/.hg/store/lfs/objects -type f
575 find: */repo12/.hg/store/lfs/objects*: $ENOENT$ (glob)
574 $ test -d $TESTTMP/repo12/.hg/store/lfs/objects
576 575 [1]
577 576
578 577 $ hg --config extensions.share= share repo12 repo13
General Comments 0
You need to be logged in to leave comments. Login now