# # patch "basic_io.cc" # from [b29988a4d205730d2d59b345d137b30a1ef43d3f] # to [97faeabccb3e6a0bfffd6ed752c690f4e9445c84] # # patch "tests/t_database_check_normalized.at" # from [de4ce8c7c795be7eb6eec68d5ce9a595448efc49] # to [4a5108a8905b371eb7d723788b294c1dcc31a8ac] # ======================================================================== --- basic_io.cc b29988a4d205730d2d59b345d137b30a1ef43d3f +++ basic_io.cc 97faeabccb3e6a0bfffd6ed752c690f4e9445c84 @@ -24,8 +24,8 @@ void basic_io::input_source::err(std::string const & s) { L(F("error in %s:%d:%d:E: %s") % name % line % col % s); - throw informative_failure((F("error in %s:%d:%d:E: %s") - % name % line % col % s).str()); + throw std::logic_error((F("error in %s:%d:%d:E: %s") + % name % line % col % s).str()); } ======================================================================== --- tests/t_database_check_normalized.at de4ce8c7c795be7eb6eec68d5ce9a595448efc49 +++ tests/t_database_check_normalized.at 4a5108a8905b371eb7d723788b294c1dcc31a8ac @@ -104,6 +104,5 @@ AT_CHECK(MONOTONE db check -d bad.db, [1], [ignore], [stderr]) AT_CHECK(grep 'revisions not parseable' stderr, [], [ignore], [ignore]) -AT_CHECK(grep 'manifests not parseable' stderr, [], [ignore], [ignore]) AT_CLEANUP