diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-08-18 16:35:44 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-10-17 11:54:10 -0400 |
commit | cd8e368f475251c0e3c42203f21e68fa25afbb3d (patch) | |
tree | 08da341eaf067e80ab80f4091199a98f9e45a400 /tools/testing/ktest/ktest.pl | |
parent | 976d167615b64e14bc1491ca51d424e2ba9a5e84 (diff) | |
download | op-kernel-dev-cd8e368f475251c0e3c42203f21e68fa25afbb3d.zip op-kernel-dev-cd8e368f475251c0e3c42203f21e68fa25afbb3d.tar.gz |
ktest: Add TEST_TYPE install option
In testing one of my boxes, I found that I only wanted to build and
install the kernel. I wanted to manually reboot the box and test it.
Adding a TEST_TYPE option "install" allows this to happen.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools/testing/ktest/ktest.pl')
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 8d02ccb..e087cb4 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -2929,6 +2929,13 @@ for (my $i = 1; $i <= $opt{"NUM_TESTS"}; $i++) { build $build_type or next; } + if ($test_type eq "install") { + get_version; + install; + success $i; + next; + } + if ($test_type ne "build") { my $failed = 0; start_monitor_and_boot or $failed = 1; |