Working on the Red Hat kernel fixes, I've spotted a bug on the kernel code: on the function build_timed, there's a call to kernel.clean() with a logged parameter, which doesn't exist on the actual function. Let's fix it.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- client/bin/kernel.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/bin/kernel.py b/client/bin/kernel.py index 4b333ea..2519272 100644 --- a/client/bin/kernel.py +++ b/client/bin/kernel.py @@ -374,7 +374,7 @@ class kernel(BootableKernel): os.chdir(self.build_dir) self.set_cross_cc() - self.clean(logged=False) + self.clean() build_string = "/usr/bin/time -o %s make %s -j %s vmlinux" \ % (timefile, make_opts, threads) build_string += ' > %s 2>&1' % output -- 1.7.2.3 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
