From: Andrew Jones <drjones@redhat.com>
To: linux-kernel@vger.kernel.org
Cc: drjones@redhat.com, rostedt@goodmis.org
Subject: [PATCH 05/10] ktest: refactor monitor/boot/test code
Date: Fri, 12 Aug 2011 15:32:07 +0200 [thread overview]
Message-ID: <1313155932-20092-6-git-send-email-drjones@redhat.com> (raw)
In-Reply-To: <1313155932-20092-1-git-send-email-drjones@redhat.com>
The monitor/boot code was already refactored, but we need to pull the
test part of the monitor/boot/test code sequences in as well to prepare for
the next patch.
Signed-off-by: Andrew Jones <drjones@redhat.com>
---
tools/testing/ktest/ktest.pl | 60 +++++++++++++++++------------------------
1 files changed, 25 insertions(+), 35 deletions(-)
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index d954564..a42f8bf 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -1490,6 +1490,24 @@ sub do_run_test {
return 1;
}
+sub do_test {
+ my ($type) = @_;
+ my $failed = 0;
+
+ start_monitor_and_boot or $failed = 1;
+
+ if ($failed && $in_bisect && $type ne "boot") {
+ end_monitor;
+ return -1;
+ }
+
+ if (!$failed && $type ne "boot" && defined($run_test)) {
+ do_run_test or $failed = 1;
+ }
+ end_monitor;
+ return !$failed;
+}
+
sub run_git_bisect {
my ($command) = @_;
@@ -1531,8 +1549,6 @@ sub run_bisect_test {
my $failed = 0;
my $result;
- my $output;
- my $ret;
$in_bisect = 1;
@@ -1545,27 +1561,17 @@ sub run_bisect_test {
}
dodie "Failed on build" if $failed;
- # Now boot the box
- start_monitor_and_boot or $failed = 1;
+ # Now boot the box and test
+ $result = do_test($type);
- if ($type ne "boot") {
- if ($failed && $bisect_skip) {
- end_monitor;
+ if ($result == -1) {
+ if ($bisect_skip) {
bisect_reboot;
$in_bisect = 0;
return -1;
}
- dodie "Failed on boot" if $failed;
-
- do_run_test or $failed = 1;
+ dodie "Failed on boot";
}
- end_monitor;
- }
-
- if ($failed) {
- $result = 0;
- } else {
- $result = 1;
}
# reboot the box to a kernel we can ssh to
@@ -2174,18 +2180,9 @@ sub patchcheck {
next if ($type eq "build");
- my $failed = 0;
-
- start_monitor_and_boot or $failed = 1;
-
- if (!$failed && $type ne "boot"){
- do_run_test or $failed = 1;
- }
- end_monitor;
- return 0 if ($failed);
+ do_test($type) or return 0;
patchcheck_reboot;
-
}
$in_patchcheck = 0;
success $i;
@@ -2946,14 +2943,7 @@ for (my $i = 1; $i <= $opt{"NUM_TESTS"}; $i++) {
}
if ($test_type ne "build") {
- my $failed = 0;
- start_monitor_and_boot or $failed = 1;
-
- if (!$failed && $test_type ne "boot" && defined($run_test)) {
- do_run_test or $failed = 1;
- }
- end_monitor;
- next if ($failed);
+ do_test($test_type) or next;
}
success $i;
--
1.7.4.1
next prev parent reply other threads:[~2011-08-12 13:34 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-12 13:32 [KTEST PATCH 00/10] collection of ktest patches Andrew Jones
2011-08-12 13:32 ` [PATCH 01/10] ktest: create outputdir, if it doesn't exist Andrew Jones
2011-08-12 13:32 ` [PATCH 02/10] ktest: small cleanup Andrew Jones
2011-08-12 13:32 ` [PATCH 03/10] ktest: factor reboot code Andrew Jones
2011-08-12 13:32 ` [PATCH 04/10] ktest: Introduce RESET_TIME Andrew Jones
2011-08-12 15:59 ` Steven Rostedt
2011-08-12 16:25 ` [PATCH 04/10 v2] ktest: Introduce CONSOLE_RESET_TIME Andrew Jones
2011-08-18 21:28 ` Steven Rostedt
2011-08-24 8:45 ` Andrew Jones
2011-08-12 13:32 ` Andrew Jones [this message]
2011-08-12 13:32 ` [PATCH 06/10] ktest: make start_monitor_and_boot true to its name Andrew Jones
2011-08-12 13:32 ` [PATCH 07/10] ktest: Introduce PASS_COUNT Andrew Jones
2011-08-12 16:49 ` Steven Rostedt
2011-08-12 17:09 ` Andrew Jones
2011-08-12 17:20 ` Steven Rostedt
2011-08-12 17:58 ` [PATCH 07/10 v2] ktest: Introduce RERUN Andrew Jones
2011-08-12 13:32 ` [PATCH 08/10] ktest: test faster, put REBOOT_ON_SUCCESS to more work Andrew Jones
2011-08-12 13:32 ` [PATCH 09/10] ktest: test faster, favor rsync over the tarball method Andrew Jones
2011-08-12 13:32 ` [PATCH 10/10] ktest: Introduce FAILURE_LINE Andrew Jones
2011-08-12 17:03 ` Steven Rostedt
2011-08-12 17:37 ` [PATCH 10/10 v2] " Andrew Jones
2011-08-12 17:44 ` [KTEST PATCH 00/10] collection of ktest patches Steven Rostedt
2011-08-12 18:03 ` Andrew Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1313155932-20092-6-git-send-email-drjones@redhat.com \
--to=drjones@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®