Re: [PATCH 4/6] test_bpf: add module parameters to filter the tests to run.
From: Nicolas Schichan <hidden>
Date: 2015-08-03 16:30:08
Also in:
lkml
On 08/03/2015 05:58 PM, Daniel Borkmann wrote:
On 08/03/2015 04:02 PM, Nicolas Schichan wrote:quoted
When developping on the interpreter or a particular JIT, it can be insteresting to restrict the test list to a specific test or as/insteresting/interesting/
[...]
s/test_pbf/test_bpf/
[...]
s/test_pbf/test_bpf/
[...]
s/conver/cover/
Sorry for the various typos, I'll fix that in a V2.
quoted
+ */ + if (test_id >= ARRAY_SIZE(tests)) { + pr_err("test_bpf: invalid test_id specified.\n"); + return -EINVAL; + }[...]quoted
@@ -4893,6 +4955,14 @@ static __init void destroy_bpf_tests(void) } } +static bool exclude_test(int test_id) +{ + if (test_range[0] >= 0 && + (test_id < test_range[0] || test_id > test_range[1])) + return true; + return false;Minor nit: could directly return it, f.e.: return test_range[0] >= 0 && (test_id < test_range[0] || test_id > test_range[1]);
I will change that.
Btw, for the range test in prepare_bpf_tests(), you could also reject a negative lower bound index right there.
I thought it was better to have all the sanity checks grouped in prepare_bpf_tests() (with the checking of the test_name and test_id parameters nearby) ? Also a negative lower bound is meaning that no range has been set so all tests should be run. Thanks, -- Nicolas Schichan Freebox SAS