mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
fe980ff373
Summary: Moves the remotefilelog extension into hgext/ and it's tests into tests/. I did not fix up all the check-module errors, since it's a ton of work for very little impact at this point. Test Plan: make local && ./run-tests.py Reviewers: #mercurial Differential Revision: https://phabricator.intern.facebook.com/D6680030
42 lines
962 B
Perl
42 lines
962 B
Perl
$ PYTHONPATH=$TESTDIR/..:$PYTHONPATH
|
|
$ export PYTHONPATH
|
|
|
|
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
|
|
3 files fetched over 1 fetches - (3 misses, 0.00% hit ratio) over *s (glob)
|
|
abort: no remotefilelog server configured - is your .hg/hgrc trusted?
|
|
[255]
|