Message ID | 20200128072002.79250-8-brendanhiggins@google.com (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | kunit: create a centralized executor to dispatch all KUnit tests | expand |
Quoting Brendan Higgins (2020-01-27 23:20:02) > Add kunit_shutdown, an option to specify that the kernel shutsdown after > running KUnit tests, to the kernel-parameters.txt documentation. > > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > --- > Documentation/admin-guide/kernel-parameters.txt | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt > index ade4e6ec23e03..0472b02ce16bb 100644 > --- a/Documentation/admin-guide/kernel-parameters.txt > +++ b/Documentation/admin-guide/kernel-parameters.txt > @@ -2054,6 +2054,13 @@ > 0: force disabled > 1: force enabled > > + kunit_shutdown [KERNEL UNIT TESTING FRAMEWORK] Shutdown kernel after > + running tests. > + Default: (flag not present) don't shutdown > + poweroff: poweroff the kernel after running tests. > + halt: halt the kernel after running tests. > + reboot: reboot the kernel after running tests. Maybe drop the full stops on the short descriptions. Otherwise, Reviewed-by: Stephen Boyd <sboyd@kernel.org>
On Tue, Jan 28, 2020 at 10:27 PM Stephen Boyd <sboyd@kernel.org> wrote: > > Quoting Brendan Higgins (2020-01-27 23:20:02) > > Add kunit_shutdown, an option to specify that the kernel shutsdown after > > running KUnit tests, to the kernel-parameters.txt documentation. > > > > Signed-off-by: Brendan Higgins <brendanhiggins@google.com> > > --- > > Documentation/admin-guide/kernel-parameters.txt | 7 +++++++ > > 1 file changed, 7 insertions(+) > > > > diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt > > index ade4e6ec23e03..0472b02ce16bb 100644 > > --- a/Documentation/admin-guide/kernel-parameters.txt > > +++ b/Documentation/admin-guide/kernel-parameters.txt > > @@ -2054,6 +2054,13 @@ > > 0: force disabled > > 1: force enabled > > > > + kunit_shutdown [KERNEL UNIT TESTING FRAMEWORK] Shutdown kernel after > > + running tests. > > + Default: (flag not present) don't shutdown > > + poweroff: poweroff the kernel after running tests. > > + halt: halt the kernel after running tests. > > + reboot: reboot the kernel after running tests. > > Maybe drop the full stops on the short descriptions. Will fix. > Otherwise, > > Reviewed-by: Stephen Boyd <sboyd@kernel.org> > Thanks!
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index ade4e6ec23e03..0472b02ce16bb 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -2054,6 +2054,13 @@ 0: force disabled 1: force enabled + kunit_shutdown [KERNEL UNIT TESTING FRAMEWORK] Shutdown kernel after + running tests. + Default: (flag not present) don't shutdown + poweroff: poweroff the kernel after running tests. + halt: halt the kernel after running tests. + reboot: reboot the kernel after running tests. + kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs. Default is 0 (don't ignore, but inject #GP)
Add kunit_shutdown, an option to specify that the kernel shutsdown after running KUnit tests, to the kernel-parameters.txt documentation. Signed-off-by: Brendan Higgins <brendanhiggins@google.com> --- Documentation/admin-guide/kernel-parameters.txt | 7 +++++++ 1 file changed, 7 insertions(+)