Apply "silence, please!" to '(no debugging symbols found)'

spammed by gdb.
This commit is contained in:
pooka 2011-03-04 09:04:06 +00:00
parent 0b70972be7
commit 58ecd47e2f
1 changed files with 2 additions and 1 deletions

View File

@ -399,7 +399,8 @@ atf_run::run_test_program(const atf::fs::path& tp,
gdbcmd = std::string("gdb -batch -q -ex bt ") +
tp.str() + std::string(" ") + corename +
std::string(" 2> /dev/null");
std::string(" 2> /dev/null | grep -v ") +
std::string("'(no debugging symbols found)'");
FILE *gdbstrm = popen(gdbcmd.c_str(), "r");
if (gdbstrm) {
w.stderr_tc(std::string("test program crashed, "