[Request] [+ ] D10839: rhg: propogate error coming from HgError::Abort to CommandError
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Mon Jun 7 12:01:09 UTC 2021
pulkit created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10839
AFFECTED FILES
rust/rhg/src/error.rs
tests/test-globalopts.t
CHANGE DETAILS
diff --git a/tests/test-globalopts.t b/tests/test-globalopts.t
--- a/tests/test-globalopts.t
+++ b/tests/test-globalopts.t
@@ -220,7 +220,6 @@
$ hg --cwd c --config paths.quuxfoo=bar paths | grep quuxfoo > /dev/null && echo quuxfoo
quuxfoo
TODO: add rhg support for detailed exit codes
-#if no-rhg
$ hg --cwd c --config '' tip -q
abort: malformed --config option: '' (use --config section.name=value)
[10]
@@ -236,7 +235,6 @@
$ hg --cwd c --config .b= tip -q
abort: malformed --config option: '.b=' (use --config section.name=value)
[10]
-#endif
Testing --debug:
diff --git a/rust/rhg/src/error.rs b/rust/rhg/src/error.rs
--- a/rust/rhg/src/error.rs
+++ b/rust/rhg/src/error.rs
@@ -69,6 +69,9 @@
HgError::UnsupportedFeature(message) => {
CommandError::unsupported(message)
}
+ HgError::Abort(message, exit_code) => {
+ CommandError::abort_with_exit_code(message, exit_code)
+ }
_ => CommandError::abort(error.to_string()),
}
}
@@ -125,7 +128,10 @@
fn from(error: ConfigError) -> Self {
match error {
ConfigError::Parse(error) => error.into(),
- ConfigError::Other(error) => error.into(),
+ ConfigError::Other(HgError::Abort(message, exit_code)) => {
+ CommandError::abort_with_exit_code(message, exit_code)
+ }
+ ConfigError::Other(_) => error.into(),
}
}
}
To: pulkit, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210607/216b873b/attachment.html>
More information about the Mercurial-patches
mailing list