mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 16:12:23 +03:00
2117806dc7
Summary: Convert dummyssh and get_free_socket to full python3 binaries. Reviewed By: johansglock Differential Revision: D23105490 fbshipit-source-id: 6c39c32ba0728cde108b42245acece1d7828ac7c
43 lines
1.3 KiB
Perl
43 lines
1.3 KiB
Perl
$ . "$TESTDIR/hgsql/library.sh"
|
|
$ disable treemanifest
|
|
|
|
# Populate the db with an initial commit
|
|
|
|
$ initclient client
|
|
$ cd client
|
|
$ echo x > x
|
|
$ hg commit -qAm x
|
|
$ cd ..
|
|
|
|
$ initserver master masterrepo
|
|
$ cd master
|
|
$ hg log
|
|
$ hg pull -q ../client
|
|
|
|
Test that hgsql is a requirement
|
|
$ grep hgsql .hg/requires
|
|
hgsql
|
|
$ hg log -r tip --config extensions.hgsql=!
|
|
abort: repository requires features unknown to this Mercurial: hgsql!
|
|
(see https://mercurial-scm.org/wiki/MissingRequirement for more information)
|
|
[255]
|
|
$ hg log -r tip
|
|
commit: b292c1e3311f
|
|
user: test
|
|
date: Thu Jan 01 00:00:00 1970 +0000
|
|
summary: x
|
|
|
|
|
|
Ensure streaming clones to non-hgsql repos work
|
|
$ cd ..
|
|
$ hg clone --config extensions.hgsql=! --config ui.ssh="$(dummysshcmd)" --uncompressed ssh://user@dummy/master client2 | grep "streaming all changes"
|
|
streaming all changes
|
|
|
|
Ensure streaming clones to hgsql repos work
|
|
$ hg clone --config extensions.hgsql= --config ui.ssh="$(dummysshcmd)" --uncompressed ssh://user@dummy/master client3
|
|
streaming all changes
|
|
4 files to transfer, 294 bytes of data
|
|
transferred 294 bytes in * seconds (*) (glob)
|
|
updating to branch default
|
|
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
|