On Thu, Dec 10, 2020 at 5:07 PM KP Singh <kpsingh@xxxxxxxxxx> wrote: > > Currently, ima_setup.sh spews outputs from commands like mkfs and dd > on the terminal without taking into account the verbosity level of > the test framework. Update test_progs to set the environment variable > SELFTESTS_VERBOSE=1 when a verbose output is requested. This > environment variable is then used by ima_setup.sh (and can be used by > other similar scripts) to obey the verbosity level of the test harness > without needing to re-implement command line options for verbosity. > > In "silent" mode, the script saves the output to a temporary file, the > contents of which are echoed back to stderr when the script encounters > an error. > > Fixes: 34b82d3ac105 ("bpf: Add a selftest for bpf_ima_inode_hash") > Reported-by: Andrii Nakryiko <andrii@xxxxxxxxxx> > Suggested-by: Andrii Nakryiko <andrii@xxxxxxxxxx> > Signed-off-by: KP Singh <kpsingh@xxxxxxxxxx> > --- This looks great, thank you. Applied. > tools/testing/selftests/bpf/ima_setup.sh | 24 ++++++++++++++++++++++++ > tools/testing/selftests/bpf/test_progs.c | 10 ++++++++++ > 2 files changed, 34 insertions(+) > [...]