On Tue, Aug 6, 2019 at 10:40 AM Stanislav Fomichev <sdf@xxxxxxxxxxx> wrote: > > On 08/06, Andrii Nakryiko wrote: > > On Tue, Aug 6, 2019 at 10:19 AM Stanislav Fomichev <sdf@xxxxxxxxxx> wrote: > > > > > > Use open_memstream to override stdout during test execution. > > > The copy of the original stdout is held in env.stdout and used > > > to print subtest info and dump failed log. > > > > > > test_{v,}printf are now simple wrappers around stdout and will be > > > removed in the next patch. > > > > > > v4: > > > * one field per line for stdout/stderr (Andrii Nakryiko) > > > > > > v3: > > > * don't do strlen over log_buf, log_cnt has it already (Andrii Nakryiko) > > > > > > v2: > > > * add ifdef __GLIBC__ around open_memstream (maybe pointless since > > > we already depend on glibc for argp_parse) > > > * hijack stderr as well (Andrii Nakryiko) > > > * don't hijack for every test, do it once (Andrii Nakryiko) > > > * log_cap -> log_size (Andrii Nakryiko) > > > * do fseeko in a proper place (Andrii Nakryiko) > > > * check open_memstream returned value (Andrii Nakryiko) > > > > > > Cc: Andrii Nakryiko <andriin@xxxxxx> > > > Acked-by: Andrii Nakryiko <andriin@xxxxxx> > > > Signed-off-by: Stanislav Fomichev <sdf@xxxxxxxxxx> > > > --- > > > tools/testing/selftests/bpf/test_progs.c | 115 ++++++++++++----------- > > > tools/testing/selftests/bpf/test_progs.h | 3 +- > > > 2 files changed, 62 insertions(+), 56 deletions(-) > > > [...] > > > void test__printf(const char *fmt, ...) > > > @@ -477,6 +438,48 @@ static error_t parse_arg(int key, char *arg, struct argp_state *state) > > > return 0; > > > } > > > > > > +static void stdio_hijack(void) > > > +{ > > > +#ifdef __GLIBC__ > > > + if (env.verbose || (env.test && env.test->force_log)) { > > > > I just also realized that you don't need `(env.test && > > env.test->force_log)` test. We hijack stdout/stderr before env.test is > > even set, so this does nothing anyways. Plus, force_log can be set in > > the middle of test/sub-test, yet we hijack stdout just once (or even > > if per-test), so it's still going to be "racy". Let's buffer output > > (unless it's env.verbose, which is important to not buffer because > > some tests will have huge output, when failing, so this allows to > > bypass using tons of memory for those, when debugging) and dump at the > > end. > Makes sense, will drop this test and resubmit along with a fix for '-v' > that Alexei discovered. Thanks! Oh, is it because env.stdout and env.stderr is not set in verbose mode? I'd always set env.stdout/env.stderr at the beginning, next to env.jit_enabled, to never care about "logging modes". > > > > + /* nothing to do, output to stdout by default */ > > > + return; > > > + } > > > + [...]