diff options
author | Ba Jing <bajing@cmss.chinamobile.com> | 2024-09-02 21:07:35 +0800 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2024-12-18 16:51:50 -0500 |
commit | 776735b954f49f85fd19e1198efa421fae2ad77c (patch) | |
tree | e43778d0aa451a323ba9e27e95a92a18ae60611e | |
parent | a4e17a8f239a545c463f8ec27db4ed6e74b31841 (diff) |
ktest.pl: Remove unused declarations in run_bisect_test function
Since $output and $ret are not used in the subsequent code, the declarations
should be removed.
Fixes: a75fececff3c ("ktest: Added sample.conf, new %default option format")
Link: https://lore.kernel.org/20240902130735.6034-1-bajing@cmss.chinamobile.com
Signed-off-by: Ba Jing <bajing@cmss.chinamobile.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 171262915636..c76ad0be54e2 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -2965,8 +2965,6 @@ sub run_bisect_test { my $failed = 0; my $result; - my $output; - my $ret; $in_bisect = 1; |