From de9de073d3348d9d065b8f42790f70e9db21cc69 Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Wed, 14 Mar 2018 17:28:47 -0400 Subject: [PATCH] jjb: lava: kprobe-fuzzing: print instrumentation points boundaries at each iteration Signed-off-by: Francis Deslauriers --- scripts/system-tests/run-kprobe-fuzzing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1