mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
14ec2d4b34
Summary: These now pass Reviewed By: farnz Differential Revision: D19678869 fbshipit-source-id: 68601ff6a6d33b13947210eecfecd999aa2ddb1a
43 lines
951 B
Perl
43 lines
951 B
Perl
#chg-compatible
|
|
|
|
$ disable treemanifest
|
|
|
|
no-check-code
|
|
$ . "$TESTDIR/library.sh"
|
|
|
|
$ hginit master
|
|
$ cd master
|
|
$ cat >> .hg/hgrc <<EOF
|
|
> [remotefilelog]
|
|
> server=True
|
|
> EOF
|
|
$ echo x > x
|
|
$ echo y > y
|
|
$ echo z > z
|
|
$ hg commit -qAm xy
|
|
|
|
$ cd ..
|
|
|
|
$ hgcloneshallow ssh://user@dummy/master shallow -q
|
|
3 files fetched over 1 fetches - (3 misses, 0.00% hit ratio) over *s (glob) (?)
|
|
$ cd shallow
|
|
|
|
Verify error message when no cachepath specified
|
|
$ hg up -q null
|
|
$ cp $HGRCPATH $HGRCPATH.bak
|
|
$ sed -i.bak -n "/cachepath/!p" $HGRCPATH
|
|
$ hg up tip
|
|
abort: could not find config option remotefilelog.cachepath
|
|
[255]
|
|
$ mv $HGRCPATH.bak $HGRCPATH
|
|
|
|
Verify error message when no fallback specified
|
|
|
|
$ hg up -q null
|
|
$ rm .hg/hgrc
|
|
$ clearcache
|
|
$ hg up tip
|
|
abort: no remotefilelog server configured - is your .hg/hgrc trusted?
|
|
3 files fetched over 1 fetches - (3 misses, 0.00% hit ratio) over *s (glob) (?)
|
|
[255]
|