Show More
@@ -1650,6 +1650,13 b' def debuginstall(ui, **opts):' | |||
|
1650 | 1650 | fm.plain(_(b'checking "re2" regexp engine (%s)\n') % re2) |
|
1651 | 1651 | fm.data(re2=bool(util._re2)) |
|
1652 | 1652 | |
|
1653 | rust_debug_mod = policy.importrust("debug") | |
|
1654 | if rust_debug_mod is not None: | |
|
1655 | re2_rust = b'installed' if rust_debug_mod.re2_installed else b'missing' | |
|
1656 | ||
|
1657 | msg = b'checking "re2" regexp engine Rust bindings (%s)\n' | |
|
1658 | fm.plain(_(msg % re2_rust)) | |
|
1659 | ||
|
1653 | 1660 | # templates |
|
1654 | 1661 | p = templater.templatepaths() |
|
1655 | 1662 | fm.write(b'templatedirs', b'checking templates (%s)...\n', b' '.join(p)) |
@@ -18,6 +18,7 b' hg debuginstall' | |||
|
18 | 18 | checking available compression engines (*zlib*) (glob) |
|
19 | 19 | checking available compression engines for wire protocol (*zlib*) (glob) |
|
20 | 20 | checking "re2" regexp engine \((available|missing)\) (re) |
|
21 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
21 | 22 | checking templates (*mercurial?templates)... (glob) |
|
22 | 23 | checking default template (*mercurial?templates?map-cmdline.default) (glob) |
|
23 | 24 | checking commit editor... (*) (glob) |
@@ -77,6 +78,7 b' hg debuginstall with no username' | |||
|
77 | 78 | checking available compression engines (*zlib*) (glob) |
|
78 | 79 | checking available compression engines for wire protocol (*zlib*) (glob) |
|
79 | 80 | checking "re2" regexp engine \((available|missing)\) (re) |
|
81 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
80 | 82 | checking templates (*mercurial?templates)... (glob) |
|
81 | 83 | checking default template (*mercurial?templates?map-cmdline.default) (glob) |
|
82 | 84 | checking commit editor... (*) (glob) |
@@ -124,6 +126,7 b' path variables are expanded (~ is the sa' | |||
|
124 | 126 | checking available compression engines (*zlib*) (glob) |
|
125 | 127 | checking available compression engines for wire protocol (*zlib*) (glob) |
|
126 | 128 | checking "re2" regexp engine \((available|missing)\) (re) |
|
129 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
127 | 130 | checking templates (*mercurial?templates)... (glob) |
|
128 | 131 | checking default template (*mercurial?templates?map-cmdline.default) (glob) |
|
129 | 132 | checking commit editor... ($TESTTMP/tools/testeditor.exe) |
@@ -151,6 +154,7 b' not found (this is intentionally using b' | |||
|
151 | 154 | checking available compression engines (*zlib*) (glob) |
|
152 | 155 | checking available compression engines for wire protocol (*zlib*) (glob) |
|
153 | 156 | checking "re2" regexp engine \((available|missing)\) (re) |
|
157 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
154 | 158 | checking templates (*mercurial?templates)... (glob) |
|
155 | 159 | checking default template (*mercurial?templates?map-cmdline.default) (glob) |
|
156 | 160 | checking commit editor... (c:\foo\bar\baz.exe) (windows !) |
@@ -207,6 +211,7 b" since it's bin on most platforms but Scr" | |||
|
207 | 211 | checking available compression engines (*) (glob) |
|
208 | 212 | checking available compression engines for wire protocol (*) (glob) |
|
209 | 213 | checking "re2" regexp engine \((available|missing)\) (re) |
|
214 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
210 | 215 | checking templates ($TESTTMP/installenv/*/site-packages/mercurial/templates)... (glob) |
|
211 | 216 | checking default template ($TESTTMP/installenv/*/site-packages/mercurial/templates/map-cmdline.default) (glob) |
|
212 | 217 | checking commit editor... (*) (glob) |
@@ -247,6 +252,7 b" since it's bin on most platforms but Scr" | |||
|
247 | 252 | checking available compression engines (*) (glob) |
|
248 | 253 | checking available compression engines for wire protocol (*) (glob) |
|
249 | 254 | checking "re2" regexp engine \((available|missing)\) (re) |
|
255 | checking "re2" regexp engine Rust bindings \((installed|missing)\) (re) | |
|
250 | 256 | checking templates ($TESTTMP/installenv/*/site-packages/mercurial/templates)... (glob) |
|
251 | 257 | checking default template ($TESTTMP/installenv/*/site-packages/mercurial/templates/map-cmdline.default) (glob) |
|
252 | 258 | checking commit editor... (*) (glob) |
General Comments 0
You need to be logged in to leave comments.
Login now