mirror of
https://github.com/facebook/sapling.git
synced 2024-12-28 23:54:12 +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
54 lines
1.4 KiB
Perl
54 lines
1.4 KiB
Perl
#require py2
|
|
#chg-compatible
|
|
|
|
$ newrepo
|
|
$ setconfig repogenerator.filenamedircount=2
|
|
$ setconfig repogenerator.filenameleaflength=1
|
|
$ setconfig repogenerator.numcommits=3
|
|
$ hg repogenerator --seed 1 --config extensions.repogenerator=
|
|
starting commit is: -1 (goal is 2)
|
|
created *, * sec elapsed (* commits/sec, * per hour, * per day) (glob)
|
|
$ hg log -G -r ::tip
|
|
o changeset: 2:26c418a67612
|
|
| user: test
|
|
| date: Thu Jan 01 00:00:00 1970 +0000
|
|
| summary: memory commit
|
|
|
|
|
o changeset: 1:331925392347
|
|
| user: test
|
|
| date: Thu Jan 01 00:00:00 1970 +0000
|
|
| summary: memory commit
|
|
|
|
|
o changeset: 0:af3f7799efa3
|
|
user: test
|
|
date: Thu Jan 01 00:00:00 1970 +0000
|
|
summary: memory commit
|
|
|
|
$ hg up -C tip
|
|
13 files updated, 0 files merged, 0 files removed, 0 files unresolved
|
|
$ hg log -r tip -T'{files}'
|
|
d/d/c f/n/p i/t/b n/y/p u/d/a y/n/h (no-eol)
|
|
$ ls */*/*
|
|
d/d/c
|
|
f/n/p
|
|
i/t/b
|
|
j/i/e
|
|
j/q/a
|
|
k/s/d
|
|
n/y/p
|
|
t/a/e
|
|
u/d/a
|
|
u/r/g
|
|
x/m/c
|
|
x/n/c
|
|
y/n/h
|
|
|
|
Set startcommit=0 and confirm it creates a commit off of 0.
|
|
$ setconfig repogenerator.startcommit=0
|
|
$ hg repogenerator --seed 1 --config extensions.repogenerator= -n 1
|
|
starting commit is: 0 (goal is 2)
|
|
created 0, * sec elapsed (* commits/sec, * per hour, * per day) (glob)
|
|
generated 1 commits; quitting
|
|
$ hg log -r tip~1+tip -T '{rev} '
|
|
0 3 (no-eol)
|