From: Francis Deslauriers Date: Wed, 14 Mar 2018 21:28:47 +0000 (-0400) Subject: jjb: lava: kprobe-fuzzing: print instrumentation points boundaries at each iteration X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=de9de073d3348d9d065b8f42790f70e9db21cc69;p=lttng-ci.git jjb: lava: kprobe-fuzzing: print instrumentation points boundaries at each iteration Signed-off-by: Francis Deslauriers --- diff --git a/scripts/system-tests/run-kprobe-fuzzing.py b/scripts/system-tests/run-kprobe-fuzzing.py index ef79077..9e4a2a0 100644 --- a/scripts/system-tests/run-kprobe-fuzzing.py +++ b/scripts/system-tests/run-kprobe-fuzzing.py @@ -33,7 +33,7 @@ def load_instr_points(instr_points_archive): return [x.decode('utf-8') for x in data.split()] def enable_kprobe_events(instr_points): - print('Enabling events...', end='') + print('Enabling events from {} to {}...'.format(instr_points[0], instr_points[-1]), end='') sys.stdout.flush() # Use os module directly, because this is a sysfs file and seeking inside