[thin_check] thin_check wasn't giving a non-zero exit code for damage in mapping trees

This commit is contained in:
Joe Thornber 2013-10-15 10:40:26 +01:00
parent f8633da296
commit 9dc4a97cb7

View File

@ -136,6 +136,10 @@ namespace {
err_ = combine_errors(err_, FATAL); err_ = combine_errors(err_, FATAL);
} }
error_state get_error() const {
return err_;
}
private: private:
nested_output &out_; nested_output &out_;
error_state err_; error_state err_;
@ -206,7 +210,8 @@ namespace {
} }
return combine_errors(sb_rep.get_error(), return combine_errors(sb_rep.get_error(),
dev_rep.get_error()); combine_errors(mapping_rep.get_error(),
dev_rep.get_error()));
} }
int check(string const &path, flags fs) { int check(string const &path, flags fs) {