##// END OF EJS Templates
merge with stable
Martin von Zweigbergk -
r44928:8cdd0b96 merge default
parent child Browse files
Show More
@@ -10,13 +10,14 b' before_script:'
10
10
11 variables:
11 variables:
12 PYTHON: python
12 PYTHON: python
13 TEST_HGMODULEPOLICY: "allow"
13
14
14 .runtests_template: &runtests
15 .runtests_template: &runtests
15 script:
16 script:
16 - cd tests/
17 - cd tests/
17 - echo "python used, $PYTHON"
18 - echo "python used, $PYTHON"
18 - echo "$RUNTEST_ARGS"
19 - echo "$RUNTEST_ARGS"
19 - $PYTHON run-tests.py --color=always $RUNTEST_ARGS
20 - HGMODULEPOLICY="$TEST_HGMODULEPOLICY" "$PYTHON" run-tests.py --color=always $RUNTEST_ARGS
20
21
21 checks-py2:
22 checks-py2:
22 <<: *runtests
23 <<: *runtests
@@ -43,29 +44,34 b' test-py2:'
43 <<: *runtests
44 <<: *runtests
44 variables:
45 variables:
45 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
46 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
47 TEST_HGMODULEPOLICY: "c"
46
48
47 test-py3:
49 test-py3:
48 <<: *runtests
50 <<: *runtests
49 variables:
51 variables:
50 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
52 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
51 PYTHON: python3
53 PYTHON: python3
54 TEST_HGMODULEPOLICY: "c"
52
55
53 test-py2-pure:
56 test-py2-pure:
54 <<: *runtests
57 <<: *runtests
55 variables:
58 variables:
56 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
59 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
60 TEST_HGMODULEPOLICY: "py"
57
61
58 test-py3-pure:
62 test-py3-pure:
59 <<: *runtests
63 <<: *runtests
60 variables:
64 variables:
61 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
65 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
62 PYTHON: python3
66 PYTHON: python3
67 TEST_HGMODULEPOLICY: "py"
63
68
64 test-py2-rust:
69 test-py2-rust:
65 <<: *runtests
70 <<: *runtests
66 variables:
71 variables:
67 HGWITHRUSTEXT: cpython
72 HGWITHRUSTEXT: cpython
68 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
73 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
74 TEST_HGMODULEPOLICY: "rust+c"
69
75
70 test-py3-rust:
76 test-py3-rust:
71 <<: *runtests
77 <<: *runtests
@@ -73,3 +79,4 b' test-py3-rust:'
73 HGWITHRUSTEXT: cpython
79 HGWITHRUSTEXT: cpython
74 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
80 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
75 PYTHON: python3
81 PYTHON: python3
82 TEST_HGMODULEPOLICY: "rust+c"
@@ -1860,10 +1860,7 b' def histedit(ui, repo, *freeargs, **opts'
1860 # kludge: _chistedit only works for starting an edit, not aborting
1860 # kludge: _chistedit only works for starting an edit, not aborting
1861 # or continuing, so fall back to regular _texthistedit for those
1861 # or continuing, so fall back to regular _texthistedit for those
1862 # operations.
1862 # operations.
1863 if (
1863 if ui.interface(b'histedit') == b'curses' and _getgoal(opts) == goalnew:
1864 ui.interface(b'histedit') == b'curses'
1865 and _getgoal(opts) == goalnew
1866 ):
1867 return _chistedit(ui, repo, freeargs, opts)
1864 return _chistedit(ui, repo, freeargs, opts)
1868 return _texthistedit(ui, repo, freeargs, opts)
1865 return _texthistedit(ui, repo, freeargs, opts)
1869
1866
@@ -126,7 +126,12 b' py_class!(pub class LazyAncestors |py| {'
126 py_class!(pub class MissingAncestors |py| {
126 py_class!(pub class MissingAncestors |py| {
127 data inner: RefCell<Box<CoreMissing<Index>>>;
127 data inner: RefCell<Box<CoreMissing<Index>>>;
128
128
129 def __new__(_cls, index: PyObject, bases: PyObject) -> PyResult<MissingAncestors> {
129 def __new__(
130 _cls,
131 index: PyObject,
132 bases: PyObject
133 )
134 -> PyResult<MissingAncestors> {
130 let bases_vec: Vec<Revision> = rev_pyiter_collect(py, &bases)?;
135 let bases_vec: Vec<Revision> = rev_pyiter_collect(py, &bases)?;
131 let inner = CoreMissing::new(pyindex_to_graph(py, index)?, bases_vec);
136 let inner = CoreMissing::new(pyindex_to_graph(py, index)?, bases_vec);
132 MissingAncestors::create_instance(py, RefCell::new(Box::new(inner)))
137 MissingAncestors::create_instance(py, RefCell::new(Box::new(inner)))
General Comments 0
You need to be logged in to leave comments. Login now