mirror of
https://github.com/facebook/sapling.git
synced 2025-01-07 14:10:42 +03:00
742cd624f7
Summary: Move hgsql into the hgext directory, and the tests to tests/test-hgsql-*. Update the tests to refer to the new places for things. Test Plan: Run the hgsql tests and make sure they pass. Reviewers: #sourcecontrol Differential Revision: https://phabricator.intern.facebook.com/D6660499 Tasks: T24908724
31 lines
557 B
Perl
31 lines
557 B
Perl
$ . "$TESTDIR/hgsql/library.sh"
|
|
|
|
Populate the db with an initial commit
|
|
|
|
$ initclient client
|
|
$ cd client
|
|
$ echo x > x
|
|
$ hg commit -qAm x
|
|
$ cd ..
|
|
|
|
$ initserver master masterrepo
|
|
$ initserver master2 masterrepo
|
|
$ cd master
|
|
$ hg log
|
|
$ hg pull -q ../client
|
|
|
|
$ cd ..
|
|
|
|
Test viewing a bundle repo
|
|
$ cd client
|
|
$ echo y > x
|
|
$ hg commit -qAm x2
|
|
$ hg bundle --base 0 --rev 1 ../mybundle.hg
|
|
1 changesets found
|
|
|
|
$ cd ../master
|
|
$ hg -R ../mybundle.hg log -r tip -T '{rev} {desc}\n'
|
|
1 x2
|
|
$ hg log -r tip -T '{rev} {desc}\n'
|
|
0 x
|