##// END OF EJS Templates
debuginstall: add a line about re2 availability...
Boris Feld -
r35464:8251c4c4 default
parent child Browse files
Show More
@@ -1173,6 +1173,11 b' def debuginstall(ui, **opts):'
1173 1173 fm.formatlist([e.name() for e in wirecompengines
1174 1174 if e.wireprotosupport()],
1175 1175 name='compengine', fmt='%s', sep=', '))
1176 re2 = 'missing'
1177 if util._re2:
1178 re2 = 'available'
1179 fm.plain(_('checking "re2" regexp engine (%s)\n') % re2)
1180 fm.data(re2=bool(util._re2))
1176 1181
1177 1182 # templates
1178 1183 p = templater.templatepaths()
@@ -14,6 +14,7 b' hg debuginstall'
14 14 checking registered compression engines (*zlib*) (glob)
15 15 checking available compression engines (*zlib*) (glob)
16 16 checking available compression engines for wire protocol (*zlib*) (glob)
17 checking "re2" regexp engine \((available|missing)\) (re)
17 18 checking templates (*mercurial?templates)... (glob)
18 19 checking default template (*mercurial?templates?map-cmdline.default) (glob)
19 20 checking commit editor... (* -c "import sys; sys.exit(0)") (glob)
@@ -44,6 +45,7 b' hg debuginstall JSON'
44 45 "pythonlib": "*", (glob)
45 46 "pythonsecurity": [*], (glob)
46 47 "pythonver": "*.*.*", (glob)
48 "re2": (true|false), (re)
47 49 "templatedirs": "*mercurial?templates", (glob)
48 50 "username": "test",
49 51 "usernameerror": null,
@@ -67,6 +69,7 b' hg debuginstall with no username'
67 69 checking registered compression engines (*zlib*) (glob)
68 70 checking available compression engines (*zlib*) (glob)
69 71 checking available compression engines for wire protocol (*zlib*) (glob)
72 checking "re2" regexp engine \((available|missing)\) (re)
70 73 checking templates (*mercurial?templates)... (glob)
71 74 checking default template (*mercurial?templates?map-cmdline.default) (glob)
72 75 checking commit editor... (* -c "import sys; sys.exit(0)") (glob)
@@ -110,6 +113,7 b' path variables are expanded (~ is the sa'
110 113 checking registered compression engines (*zlib*) (glob)
111 114 checking available compression engines (*zlib*) (glob)
112 115 checking available compression engines for wire protocol (*zlib*) (glob)
116 checking "re2" regexp engine \((available|missing)\) (re)
113 117 checking templates (*mercurial?templates)... (glob)
114 118 checking default template (*mercurial?templates?map-cmdline.default) (glob)
115 119 checking commit editor... (* -c "import sys; sys.exit(0)") (glob)
@@ -217,6 +221,7 b" since it's bin on most platforms but Scr"
217 221 checking registered compression engines (*) (glob)
218 222 checking available compression engines (*) (glob)
219 223 checking available compression engines for wire protocol (*) (glob)
224 checking "re2" regexp engine \((available|missing)\) (re)
220 225 checking templates ($TESTTMP/installenv/*/site-packages/mercurial/templates)... (glob)
221 226 checking default template ($TESTTMP/installenv/*/site-packages/mercurial/templates/map-cmdline.default) (glob)
222 227 checking commit editor... (*) (glob)
General Comments 0
You need to be logged in to leave comments. Login now