aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_printf.c
diff options
context:
space:
mode:
authorDaniel Latypov <[email protected]>2021-02-06 00:08:54 +0000
committerShuah Khan <[email protected]>2021-02-08 23:10:22 +0000
commit7af29141a31a2a2350589471c8979ff5f22fb9b7 (patch)
tree3333ee80df8218db88e74b69ae59254a2adf9e6b /lib/test_printf.c
parentkunit: tool: add support for filtering suites by glob (diff)
downloadkernel-7af29141a31a2a2350589471c8979ff5f22fb9b7.tar.gz
kernel-7af29141a31a2a2350589471c8979ff5f22fb9b7.zip
kunit: tool: fix unintentional statefulness in run_kernel()
This is a bug that has been present since the first version of this code. Using [] as a default parameter is dangerous, since it's mutable. Example using the REPL: >>> def bad(param = []): ... param.append(len(param)) ... print(param) ... >>> bad() [0] >>> bad() [0, 1] This wasn't a concern in the past since it would just keep appending the same values to it. E.g. before, `args` would just grow in size like: [mem=1G', 'console=tty'] [mem=1G', 'console=tty', mem=1G', 'console=tty'] But with now filter_glob, this is more dangerous, e.g. run_kernel(filter_glob='my-test*') # default modified here run_kernel() # filter_glob still applies here! That earlier `filter_glob` will affect all subsequent calls that don't specify `args`. Note: currently the kunit tool only calls run_kernel() at most once, so it's not possible to trigger any negative side-effects right now. Fixes: 6ebf5866f2e8 ("kunit: tool: add Python wrappers for running KUnit tests") Signed-off-by: Daniel Latypov <[email protected]> Reviewed-by: Brendan Higgins <[email protected]> Signed-off-by: Shuah Khan <[email protected]>
Diffstat (limited to 'lib/test_printf.c')
0 files changed, 0 insertions, 0 deletions