mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
92f6f35e7a
Summary: This diff marks **ALL** mercurial tests requiring Python 2 feature. After you fixes some tests, simply remove the `py2` feature requirement and that tests will be continuously run after your diff is landed. To bypass this feature requirement, run the tests command with `HGTEST_FORCE_PY2=1`. For example: ``` HGTEST_FORCE_PY2=1 buck test //eden/scm/tests:hg_run_tests ``` or ``` HGTEST_FORCE_PY2=1 python run-tests.py ``` ---- Basically this diff are created with the following commands: ``` $ sed -i 's/import feature\(.*\)$/import feature\1\n\nfeature.require(["py2"])/' test-*-t.py $ sed -i '1s/^/#require py2\n/' test-*.t $ ls | grep -P "^test.*(?<\!-t)\.py$" > list && vim -p $(cat list) # manually adding feature requires for these Python tests. ``` (Note: this ignores all push blocking failures!) ignore-conflict-markers Reviewed By: singhsrb Differential Revision: D19655148 fbshipit-source-id: 985e3ccb4010cc559049f1d89f8909bc2d9b5e20
44 lines
1.4 KiB
Perl
44 lines
1.4 KiB
Perl
#require py2
|
|
#chg-compatible
|
|
|
|
#require killdaemons
|
|
|
|
= Test the known() protocol function =
|
|
|
|
Create a test repository:
|
|
|
|
$ hg init repo
|
|
$ cd repo
|
|
$ touch a ; hg add a ; hg ci -ma
|
|
$ touch b ; hg add b ; hg ci -mb
|
|
$ touch c ; hg add c ; hg ci -mc
|
|
$ hg log --template '{node}\n'
|
|
991a3460af53952d10ec8a295d3d2cc2e5fa9690
|
|
0e067c57feba1a5694ca4844f05588bb1bf82342
|
|
3903775176ed42b1458a6281db4a0ccf4d9f287a
|
|
$ cd ..
|
|
|
|
Test locally:
|
|
|
|
$ hg debugknown repo 991a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 3903775176ed42b1458a6281db4a0ccf4d9f287a
|
|
111
|
|
$ hg debugknown repo 000a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 0003775176ed42b1458a6281db4a0ccf4d9f287a
|
|
010
|
|
$ hg debugknown repo
|
|
|
|
|
|
Test via HTTP:
|
|
|
|
$ hg serve -R repo -p 0 --port-file $TESTTMP/.port -d --pid-file=hg.pid -E error.log -A access.log
|
|
$ HGPORT=`cat $TESTTMP/.port`
|
|
$ cat hg.pid >> $DAEMON_PIDS
|
|
$ hg debugknown http://localhost:$HGPORT/ 991a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 3903775176ed42b1458a6281db4a0ccf4d9f287a
|
|
111
|
|
$ hg debugknown http://localhost:$HGPORT/ 000a3460af53952d10ec8a295d3d2cc2e5fa9690 0e067c57feba1a5694ca4844f05588bb1bf82342 0003775176ed42b1458a6281db4a0ccf4d9f287a
|
|
010
|
|
$ hg debugknown http://localhost:$HGPORT/
|
|
|
|
$ cat error.log
|
|
$ killdaemons.py
|
|
|