Mercurial > hg
comparison tests/test-debugextensions.t @ 29892:b64eaf947632
debugextensions: show ships-with-hg-core state as a separate field
This is less magical than rephrasing ships-with-hg-core as internal, and
we can distinguish "internal" liar. "tested with: internal" will be hidden
by the next patch.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 31 Aug 2016 23:22:07 +0900 |
parents | ca6940515485 |
children | 4c28ddda5d48 |
comparison
equal
deleted
inserted
replaced
29891:ca6940515485 | 29892:b64eaf947632 |
---|---|
30 rebase | 30 rebase |
31 | 31 |
32 $ hg debugextensions -v | 32 $ hg debugextensions -v |
33 color | 33 color |
34 location: */hgext/color.py* (glob) | 34 location: */hgext/color.py* (glob) |
35 bundled: yes | |
35 tested with: internal | 36 tested with: internal |
36 ext1 | 37 ext1 |
37 location: */extwithoutinfos.py* (glob) | 38 location: */extwithoutinfos.py* (glob) |
39 bundled: no | |
38 ext2 | 40 ext2 |
39 location: */extwithinfos.py* (glob) | 41 location: */extwithinfos.py* (glob) |
42 bundled: no | |
40 tested with: 3.0 3.1 3.2.1 | 43 tested with: 3.0 3.1 3.2.1 |
41 bug reporting: https://example.org/bts | 44 bug reporting: https://example.org/bts |
42 histedit | 45 histedit |
43 location: */hgext/histedit.py* (glob) | 46 location: */hgext/histedit.py* (glob) |
47 bundled: yes | |
44 tested with: internal | 48 tested with: internal |
45 mq | 49 mq |
46 location: */hgext/mq.py* (glob) | 50 location: */hgext/mq.py* (glob) |
51 bundled: yes | |
47 tested with: internal | 52 tested with: internal |
48 patchbomb | 53 patchbomb |
49 location: */hgext/patchbomb.py* (glob) | 54 location: */hgext/patchbomb.py* (glob) |
55 bundled: yes | |
50 tested with: internal | 56 tested with: internal |
51 rebase | 57 rebase |
52 location: */hgext/rebase.py* (glob) | 58 location: */hgext/rebase.py* (glob) |
59 bundled: yes | |
53 tested with: internal | 60 tested with: internal |
54 | 61 |
55 $ hg debugextensions -Tjson | sed 's|\\\\|/|g' | 62 $ hg debugextensions -Tjson | sed 's|\\\\|/|g' |
56 [ | 63 [ |
57 { | 64 { |
58 "buglink": "", | 65 "buglink": "", |
66 "bundled": true, | |
59 "name": "color", | 67 "name": "color", |
60 "source": "*/hgext/color.py*", (glob) | 68 "source": "*/hgext/color.py*", (glob) |
61 "testedwith": ["internal"] | 69 "testedwith": ["internal"] |
62 }, | 70 }, |
63 { | 71 { |
64 "buglink": "", | 72 "buglink": "", |
73 "bundled": false, | |
65 "name": "ext1", | 74 "name": "ext1", |
66 "source": "*/extwithoutinfos.py*", (glob) | 75 "source": "*/extwithoutinfos.py*", (glob) |
67 "testedwith": [] | 76 "testedwith": [] |
68 }, | 77 }, |
69 { | 78 { |
70 "buglink": "https://example.org/bts", | 79 "buglink": "https://example.org/bts", |
80 "bundled": false, | |
71 "name": "ext2", | 81 "name": "ext2", |
72 "source": "*/extwithinfos.py*", (glob) | 82 "source": "*/extwithinfos.py*", (glob) |
73 "testedwith": ["3.0", "3.1", "3.2.1"] | 83 "testedwith": ["3.0", "3.1", "3.2.1"] |
74 }, | 84 }, |
75 { | 85 { |
76 "buglink": "", | 86 "buglink": "", |
87 "bundled": true, | |
77 "name": "histedit", | 88 "name": "histedit", |
78 "source": "*/hgext/histedit.py*", (glob) | 89 "source": "*/hgext/histedit.py*", (glob) |
79 "testedwith": ["internal"] | 90 "testedwith": ["internal"] |
80 }, | 91 }, |
81 { | 92 { |
82 "buglink": "", | 93 "buglink": "", |
94 "bundled": true, | |
83 "name": "mq", | 95 "name": "mq", |
84 "source": "*/hgext/mq.py*", (glob) | 96 "source": "*/hgext/mq.py*", (glob) |
85 "testedwith": ["internal"] | 97 "testedwith": ["internal"] |
86 }, | 98 }, |
87 { | 99 { |
88 "buglink": "", | 100 "buglink": "", |
101 "bundled": true, | |
89 "name": "patchbomb", | 102 "name": "patchbomb", |
90 "source": "*/hgext/patchbomb.py*", (glob) | 103 "source": "*/hgext/patchbomb.py*", (glob) |
91 "testedwith": ["internal"] | 104 "testedwith": ["internal"] |
92 }, | 105 }, |
93 { | 106 { |
94 "buglink": "", | 107 "buglink": "", |
108 "bundled": true, | |
95 "name": "rebase", | 109 "name": "rebase", |
96 "source": "*/hgext/rebase.py*", (glob) | 110 "source": "*/hgext/rebase.py*", (glob) |
97 "testedwith": ["internal"] | 111 "testedwith": ["internal"] |
98 } | 112 } |
99 ] | 113 ] |