mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 16:12:23 +03:00
0562c1220f
Summary: This makes tests depend less on revision numbers. Reviewed By: DurhamG Differential Revision: D22468669 fbshipit-source-id: 74a06930faa3e6ee9d246ecc718c2a3740f57a54
60 lines
1.2 KiB
Perl
60 lines
1.2 KiB
Perl
#require py2
|
|
#chg-compatible
|
|
|
|
$ . "$TESTDIR/hgsql/library.sh"
|
|
$ disable treemanifest
|
|
|
|
Add common configuration for the client and server.
|
|
|
|
$ cat >> $HGRCPATH <<EOF
|
|
> [extensions]
|
|
> pushrebase=
|
|
> EOF
|
|
|
|
|
|
Configure the server
|
|
|
|
$ hg init --config extensions.hgsql= --config extensions.globalrevs= \
|
|
> --config format.useglobalrevs=True master
|
|
$ configureserver master masterrepo
|
|
$ cd master
|
|
$ cat >> .hg/hgrc <<EOF
|
|
> [extensions]
|
|
> globalrevs=
|
|
> [pushrebase]
|
|
> blocknonpushrebase = True
|
|
> EOF
|
|
|
|
$ hg initglobalrev 0 --i-know-what-i-am-doing
|
|
$ cd ..
|
|
|
|
|
|
Populate the database with an initial commit
|
|
|
|
$ initclient client
|
|
|
|
$ cd client
|
|
$ touch x && hg ci -qAm x
|
|
|
|
$ hg push -q ssh://user@dummy/master --to master
|
|
|
|
|
|
Test that `globalrevs` extensions is a requirement
|
|
|
|
$ cd ../master
|
|
|
|
$ grep globalrevs .hg/requires
|
|
globalrevs
|
|
|
|
$ hg log -r tip --config extensions.globalrevs=!
|
|
abort: repository requires features unknown to this Mercurial: globalrevs!
|
|
(see https://mercurial-scm.org/wiki/MissingRequirement for more information)
|
|
[255]
|
|
|
|
$ hg log -r tip
|
|
commit: dc9179e745c2
|
|
user: test
|
|
date: Thu Jan 01 00:00:00 1970 +0000
|
|
summary: x
|
|
|