commands.resolve: support printing out driver-resolved files
There's no user-visible way to mark files as driver-resolved, so this status
won't be visible.
--- a/mercurial/commands.py Sat Oct 17 12:32:23 2015 -0700
+++ b/mercurial/commands.py Thu Oct 15 00:45:20 2015 -0700
@@ -5588,7 +5588,8 @@
for f in ms:
if not m(f):
continue
- l = 'resolve.' + {'u': 'unresolved', 'r': 'resolved'}[ms[f]]
+ l = 'resolve.' + {'u': 'unresolved', 'r': 'resolved',
+ 'd': 'driverresolved'}[ms[f]]
fm.startitem()
fm.condwrite(not nostatus, 'status', '%s ', ms[f].upper(), label=l)
fm.write('path', '%s\n', f, label=l)