2010-11-03 03:01:32 +08:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use IPC::Open2;
|
|
|
|
use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
|
|
|
|
use FileHandle;
|
|
|
|
|
|
|
|
$#ARGV >= 0 || die "usage: autotest.pl config-file\n";
|
|
|
|
|
|
|
|
$| = 1;
|
|
|
|
|
|
|
|
my %opt;
|
|
|
|
|
|
|
|
#default opts
|
|
|
|
$opt{"NUM_BUILDS"} = 5;
|
|
|
|
$opt{"DEFAULT_BUILD_TYPE"} = "randconfig";
|
|
|
|
$opt{"MAKE_CMD"} = "make";
|
|
|
|
$opt{"TIMEOUT"} = 50;
|
|
|
|
$opt{"TMP_DIR"} = "/tmp/autotest";
|
|
|
|
$opt{"SLEEP_TIME"} = 60; # sleep time between tests
|
2010-11-03 02:57:01 +08:00
|
|
|
$opt{"BUILD_NOCLEAN"} = 0;
|
2010-11-03 02:57:21 +08:00
|
|
|
$opt{"REBOOT_ON_ERROR"} = 0;
|
2010-11-03 02:57:01 +08:00
|
|
|
$opt{"POWEROFF_ON_ERROR"} = 0;
|
|
|
|
$opt{"POWEROFF_ON_SUCCESS"} = 0;
|
2010-11-03 02:57:21 +08:00
|
|
|
$opt{"BUILD_OPTIONS"} = "";
|
2010-11-03 02:57:43 +08:00
|
|
|
$opt{"BISECT_SLEEP_TIME"} = 10; # sleep time between bisects
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
my $version;
|
|
|
|
my $grub_number;
|
|
|
|
my $target;
|
|
|
|
my $make;
|
2010-11-03 02:57:01 +08:00
|
|
|
my $noclean;
|
2010-11-03 02:57:33 +08:00
|
|
|
my $minconfig;
|
|
|
|
my $in_bisect = 0;
|
|
|
|
my $bisect_bad = "";
|
2010-11-03 02:57:43 +08:00
|
|
|
my $run_test;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
sub read_config {
|
|
|
|
my ($config) = @_;
|
|
|
|
|
|
|
|
open(IN, $config) || die "can't read file $config";
|
|
|
|
|
|
|
|
while (<IN>) {
|
|
|
|
|
|
|
|
# ignore blank lines and comments
|
|
|
|
next if (/^\s*$/ || /\s*\#/);
|
|
|
|
|
|
|
|
if (/^\s*(\S+)\s*=\s*(.*?)\s*$/) {
|
|
|
|
my $lvalue = $1;
|
|
|
|
my $rvalue = $2;
|
|
|
|
|
|
|
|
$opt{$lvalue} = $rvalue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(IN);
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
sub logit {
|
2010-11-03 03:01:32 +08:00
|
|
|
if (defined($opt{"LOG_FILE"})) {
|
|
|
|
open(OUT, ">> $opt{LOG_FILE}") or die "Can't write to $opt{LOG_FILE}";
|
|
|
|
print OUT @_;
|
|
|
|
close(OUT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
sub doprint {
|
|
|
|
print @_;
|
|
|
|
logit @_;
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:01 +08:00
|
|
|
sub dodie {
|
2010-11-03 02:57:43 +08:00
|
|
|
doprint "CRITICAL FAILURE... ", @_, "\n";
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
if ($opt{"REBOOT_ON_ERROR"}) {
|
|
|
|
doprint "REBOOTING\n";
|
|
|
|
`$opt{"POWER_CYCLE"}`;
|
|
|
|
|
|
|
|
} elsif ($opt{"POWEROFF_ON_ERROR"} && defined($opt{"POWER_OFF"})) {
|
2010-11-03 02:57:01 +08:00
|
|
|
doprint "POWERING OFF\n";
|
|
|
|
`$opt{"POWER_OFF"}`;
|
|
|
|
}
|
2010-11-03 02:57:21 +08:00
|
|
|
|
2010-11-03 02:57:01 +08:00
|
|
|
die @_;
|
|
|
|
}
|
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
sub run_command {
|
|
|
|
my ($command) = @_;
|
2010-11-03 02:57:43 +08:00
|
|
|
my $redirect_log = "";
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
if (defined($opt{"LOG_FILE"})) {
|
2010-11-03 02:57:43 +08:00
|
|
|
$redirect_log = " >> $opt{LOG_FILE} 2>&1";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
doprint "$command ... ";
|
2010-11-03 02:57:43 +08:00
|
|
|
`$command $redirect_log`;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
my $failed = $?;
|
|
|
|
|
|
|
|
if ($failed) {
|
|
|
|
doprint "FAILED!\n";
|
|
|
|
} else {
|
|
|
|
doprint "SUCCESS\n";
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
return !$failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_grub_index {
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
return if (defined($grub_number));
|
2010-11-03 02:57:33 +08:00
|
|
|
|
|
|
|
doprint "Find grub menu ... ";
|
|
|
|
$grub_number = -1;
|
|
|
|
open(IN, "ssh $target cat /boot/grub/menu.lst |")
|
|
|
|
or die "unable to get menu.lst";
|
|
|
|
while (<IN>) {
|
|
|
|
if (/^\s*title\s+$opt{GRUB_MENU}\s*$/) {
|
|
|
|
$grub_number++;
|
|
|
|
last;
|
|
|
|
} elsif (/^\s*title\s/) {
|
|
|
|
$grub_number++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(IN);
|
|
|
|
|
|
|
|
die "Could not find '$opt{GRUB_MENU}' in /boot/grub/menu on $opt{MACHINE}"
|
|
|
|
if ($grub_number < 0);
|
|
|
|
doprint "$grub_number\n";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
my $timeout = $opt{"TIMEOUT"};
|
|
|
|
|
|
|
|
sub wait_for_input
|
|
|
|
{
|
|
|
|
my ($fp, $time) = @_;
|
|
|
|
my $rin;
|
|
|
|
my $ready;
|
|
|
|
my $line;
|
|
|
|
my $ch;
|
|
|
|
|
|
|
|
if (!defined($time)) {
|
|
|
|
$time = $timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
$rin = '';
|
|
|
|
vec($rin, fileno($fp), 1) = 1;
|
|
|
|
$ready = select($rin, undef, undef, $time);
|
|
|
|
|
|
|
|
$line = "";
|
|
|
|
|
|
|
|
# try to read one char at a time
|
|
|
|
while (sysread $fp, $ch, 1) {
|
|
|
|
$line .= $ch;
|
|
|
|
last if ($ch eq "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!length($line)) {
|
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $line;
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
sub reboot_to {
|
2010-11-03 03:01:32 +08:00
|
|
|
run_command "ssh $target '(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'";
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
sub open_console {
|
|
|
|
my ($fp) = @_;
|
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
my $flags;
|
2010-11-03 02:57:43 +08:00
|
|
|
|
|
|
|
my $pid = open($fp, "$opt{CONSOLE}|") or
|
|
|
|
dodie "Can't open console $opt{CONSOLE}";
|
|
|
|
|
|
|
|
$flags = fcntl($fp, F_GETFL, 0) or
|
|
|
|
dodie "Can't get flags for the socket: $!\n";
|
|
|
|
$flags = fcntl($fp, F_SETFL, $flags | O_NONBLOCK) or
|
|
|
|
dodie "Can't set flags for the socket: $!\n";
|
|
|
|
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub close_console {
|
|
|
|
my ($fp, $pid) = @_;
|
|
|
|
|
|
|
|
doprint "kill child process $pid\n";
|
|
|
|
kill 2, $pid;
|
|
|
|
|
|
|
|
print "closing!\n";
|
|
|
|
close($fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub monitor {
|
2010-11-03 03:01:32 +08:00
|
|
|
my $booted = 0;
|
|
|
|
my $bug = 0;
|
|
|
|
my $pid;
|
2010-11-03 02:57:01 +08:00
|
|
|
my $skip_call_trace = 0;
|
2010-11-03 02:57:43 +08:00
|
|
|
my $fp = \*IN;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
$pid = open_console($fp);
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
my $line;
|
|
|
|
my $full_line = "";
|
|
|
|
|
|
|
|
doprint "Wait for monitor to settle down.\n";
|
|
|
|
# read the monitor and wait for the system to calm down
|
|
|
|
do {
|
2010-11-03 02:57:43 +08:00
|
|
|
$line = wait_for_input($fp, 5);
|
2010-11-03 03:01:32 +08:00
|
|
|
} while (defined($line));
|
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
reboot_to;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
$line = wait_for_input($fp);
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
last if (!defined($line));
|
|
|
|
|
|
|
|
doprint $line;
|
|
|
|
|
|
|
|
# we are not guaranteed to get a full line
|
|
|
|
$full_line .= $line;
|
|
|
|
|
|
|
|
if ($full_line =~ /login:/) {
|
|
|
|
$booted = 1;
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:01 +08:00
|
|
|
if ($full_line =~ /\[ backtrace testing \]/) {
|
|
|
|
$skip_call_trace = 1;
|
|
|
|
}
|
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
if ($full_line =~ /call trace:/i) {
|
2010-11-03 02:57:01 +08:00
|
|
|
$bug = 1 if (!$skip_call_trace);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($full_line =~ /\[ end of backtrace testing \]/) {
|
|
|
|
$skip_call_trace = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($full_line =~ /Kernel panic -/) {
|
2010-11-03 03:01:32 +08:00
|
|
|
$bug = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($line =~ /\n/) {
|
|
|
|
$full_line = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
close_console($fp, $pid);
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
if (!$booted) {
|
2010-11-03 02:57:43 +08:00
|
|
|
return 1 if ($in_bisect);
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "failed - never got a boot prompt.\n";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($bug) {
|
2010-11-03 02:57:43 +08:00
|
|
|
return 1 if ($in_bisect);
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "failed - got a bug report\n";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
2010-11-03 02:57:33 +08:00
|
|
|
|
|
|
|
return 0;
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub install {
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "scp $opt{OUTPUT_DIR}/$opt{BUILD_TARGET} $target:$opt{TARGET_IMAGE}" or
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "failed to copy image";
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
my $install_mods = 0;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
# should we process modules?
|
|
|
|
$install_mods = 0;
|
|
|
|
open(IN, "$opt{OUTPUT_DIR}/.config") or dodie("Can't read config file");
|
|
|
|
while (<IN>) {
|
|
|
|
if (/CONFIG_MODULES(=y)?/) {
|
|
|
|
$install_mods = 1 if (defined($1));
|
|
|
|
last;
|
2010-11-03 02:57:01 +08:00
|
|
|
}
|
2010-11-03 02:57:33 +08:00
|
|
|
}
|
|
|
|
close(IN);
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if (!$install_mods) {
|
|
|
|
doprint "No modules needed\n";
|
|
|
|
return;
|
|
|
|
}
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "$make INSTALL_MOD_PATH=$opt{TMP_DIR} modules_install" or
|
|
|
|
dodie "Failed to install modules";
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
my $modlib = "/lib/modules/$version";
|
|
|
|
my $modtar = "autotest-mods.tar.bz2";
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "ssh $target rm -rf $modlib" or
|
|
|
|
dodie "failed to remove old mods: $modlib";
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
# would be nice if scp -r did not follow symbolic links
|
|
|
|
run_command "cd $opt{TMP_DIR} && tar -cjf $modtar lib/modules/$version" or
|
|
|
|
dodie "making tarball";
|
|
|
|
|
|
|
|
run_command "scp $opt{TMP_DIR}/$modtar $target:/tmp" or
|
|
|
|
dodie "failed to copy modules";
|
|
|
|
|
|
|
|
unlink "$opt{TMP_DIR}/$modtar";
|
|
|
|
|
|
|
|
run_command "ssh $target '(cd / && tar xf /tmp/$modtar)'" or
|
|
|
|
dodie "failed to tar modules";
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "ssh $target rm -f /tmp/$modtar";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub build {
|
|
|
|
my ($type) = @_;
|
2010-11-03 02:57:01 +08:00
|
|
|
my $defconfig = "";
|
|
|
|
my $append = "";
|
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
if ($type =~ /^useconfig:(.*)/) {
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "cp $1 $opt{OUTPUT_DIR}/.config" or
|
2010-11-03 02:57:21 +08:00
|
|
|
dodie "could not copy $1 to .config";
|
2010-11-03 02:57:33 +08:00
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
$type = "oldconfig";
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:01 +08:00
|
|
|
# old config can ask questions
|
|
|
|
if ($type eq "oldconfig") {
|
|
|
|
$append = "yes ''|";
|
2010-11-03 02:57:21 +08:00
|
|
|
|
|
|
|
# allow for empty configs
|
|
|
|
run_command "touch $opt{OUTPUT_DIR}/.config";
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "mv $opt{OUTPUT_DIR}/.config $opt{OUTPUT_DIR}/config_temp" or
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "moving .config";
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if (!$noclean && !run_command "$make mrproper") {
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "make mrproper";
|
|
|
|
}
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "mv $opt{OUTPUT_DIR}/config_temp $opt{OUTPUT_DIR}/.config" or
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "moving config_temp";
|
|
|
|
|
|
|
|
} elsif (!$noclean) {
|
|
|
|
unlink "$opt{OUTPUT_DIR}/.config";
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "$make mrproper" or
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "make mrproper";
|
|
|
|
}
|
2010-11-03 03:01:32 +08:00
|
|
|
|
|
|
|
# add something to distinguish this build
|
2010-11-03 02:57:01 +08:00
|
|
|
open(OUT, "> $opt{OUTPUT_DIR}/localversion") or dodie("Can't make localversion file");
|
2010-11-03 03:01:32 +08:00
|
|
|
print OUT "$opt{LOCALVERSION}\n";
|
|
|
|
close(OUT);
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if (defined($minconfig)) {
|
|
|
|
$defconfig = "KCONFIG_ALLCONFIG=$minconfig";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
run_command "$defconfig $append $make $type" or
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "failed make config";
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if (!run_command "$make $opt{BUILD_OPTIONS}") {
|
|
|
|
# bisect may need this to pass
|
|
|
|
return 1 if ($in_bisect);
|
2010-11-03 02:57:01 +08:00
|
|
|
dodie "failed build";
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
2010-11-03 02:57:33 +08:00
|
|
|
|
|
|
|
return 0;
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:21 +08:00
|
|
|
sub reboot {
|
|
|
|
# try to reboot normally
|
2010-11-03 02:57:33 +08:00
|
|
|
if (!run_command "ssh $target reboot") {
|
2010-11-03 02:57:21 +08:00
|
|
|
# nope? power cycle it.
|
|
|
|
run_command "$opt{POWER_CYCLE}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub halt {
|
2010-11-03 02:57:33 +08:00
|
|
|
if (!run_command "ssh $target halt" or defined($opt{"POWER_OFF"})) {
|
2010-11-03 02:57:21 +08:00
|
|
|
# nope? the zap it!
|
|
|
|
run_command "$opt{POWER_OFF}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
sub success {
|
|
|
|
my ($i) = @_;
|
|
|
|
|
|
|
|
doprint "\n\n*******************************************\n";
|
|
|
|
doprint "*******************************************\n";
|
|
|
|
doprint "** SUCCESS!!!! **\n";
|
|
|
|
doprint "*******************************************\n";
|
|
|
|
doprint "*******************************************\n";
|
|
|
|
|
|
|
|
if ($i != $opt{"NUM_BUILDS"}) {
|
|
|
|
reboot;
|
|
|
|
doprint "Sleeping $opt{SLEEP_TIME} seconds\n";
|
|
|
|
sleep "$opt{SLEEP_TIME}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_version {
|
|
|
|
# get the release name
|
|
|
|
doprint "$make kernelrelease ... ";
|
|
|
|
$version = `$make kernelrelease | tail -1`;
|
|
|
|
chomp($version);
|
|
|
|
doprint "$version\n";
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
sub child_run_test {
|
|
|
|
my $failed;
|
|
|
|
|
|
|
|
$failed = !run_command $run_test;
|
|
|
|
exit $failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $child_done;
|
|
|
|
|
|
|
|
sub child_finished {
|
|
|
|
$child_done = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub do_run_test {
|
|
|
|
my $child_pid;
|
|
|
|
my $child_exit;
|
|
|
|
my $pid;
|
|
|
|
my $line;
|
|
|
|
my $full_line;
|
|
|
|
my $bug = 0;
|
|
|
|
my $fp = \*IN;
|
|
|
|
|
|
|
|
$pid = open_console($fp);
|
|
|
|
|
|
|
|
# read the monitor and wait for the system to calm down
|
|
|
|
do {
|
|
|
|
$line = wait_for_input($fp, 1);
|
|
|
|
} while (defined($line));
|
|
|
|
|
|
|
|
$child_done = 0;
|
|
|
|
|
|
|
|
$SIG{CHLD} = qw(child_finished);
|
|
|
|
|
|
|
|
$child_pid = fork;
|
|
|
|
|
|
|
|
child_run_test if (!$child_pid);
|
|
|
|
|
|
|
|
$full_line = "";
|
|
|
|
|
|
|
|
do {
|
|
|
|
$line = wait_for_input($fp, 1);
|
|
|
|
if (defined($line)) {
|
|
|
|
|
|
|
|
# we are not guaranteed to get a full line
|
|
|
|
$full_line .= $line;
|
|
|
|
|
|
|
|
if ($full_line =~ /call trace:/i) {
|
|
|
|
$bug = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($full_line =~ /Kernel panic -/) {
|
|
|
|
$bug = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($line =~ /\n/) {
|
|
|
|
$full_line = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (!$child_done && !$bug);
|
|
|
|
|
|
|
|
if ($bug) {
|
|
|
|
doprint "Detected kernel crash!\n";
|
|
|
|
# kill the child with extreme prejudice
|
|
|
|
kill 9, $child_pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
waitpid $child_pid, 0;
|
|
|
|
$child_exit = $?;
|
|
|
|
|
|
|
|
close_console($fp, $pid);
|
|
|
|
|
|
|
|
if ($bug || $child_exit) {
|
|
|
|
return 1 if $in_bisect;
|
|
|
|
dodie "test failed";
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
sub run_bisect {
|
|
|
|
my ($type) = @_;
|
|
|
|
|
|
|
|
my $failed;
|
|
|
|
my $result;
|
|
|
|
my $output;
|
|
|
|
my $ret;
|
|
|
|
|
|
|
|
|
|
|
|
if (defined($minconfig)) {
|
|
|
|
$failed = build "useconfig:$minconfig";
|
|
|
|
} else {
|
|
|
|
# ?? no config to use?
|
|
|
|
$failed = build "oldconfig";
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type ne "build") {
|
|
|
|
dodie "Failed on build" if $failed;
|
|
|
|
|
|
|
|
# Now boot the box
|
|
|
|
get_grub_index;
|
|
|
|
get_version;
|
|
|
|
install;
|
|
|
|
$failed = monitor;
|
|
|
|
|
|
|
|
if ($type ne "boot") {
|
|
|
|
dodie "Failed on boot" if $failed;
|
2010-11-03 02:57:43 +08:00
|
|
|
|
|
|
|
$failed = do_run_test;
|
2010-11-03 02:57:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($failed) {
|
|
|
|
$result = "bad";
|
2010-11-03 02:57:43 +08:00
|
|
|
|
|
|
|
# reboot the box to a good kernel
|
|
|
|
if ($type eq "boot") {
|
|
|
|
reboot;
|
|
|
|
doprint "sleep a little for reboot\n";
|
|
|
|
sleep $opt{"BISECT_SLEEP_TIME"};
|
|
|
|
}
|
2010-11-03 02:57:33 +08:00
|
|
|
} else {
|
|
|
|
$result = "good";
|
|
|
|
}
|
|
|
|
|
|
|
|
doprint "git bisect $result ... ";
|
|
|
|
$output = `git bisect $result 2>&1`;
|
|
|
|
$ret = $?;
|
|
|
|
|
|
|
|
logit $output;
|
|
|
|
|
|
|
|
if ($ret) {
|
|
|
|
doprint "FAILED\n";
|
|
|
|
dodie "Failed to git bisect";
|
|
|
|
}
|
|
|
|
|
|
|
|
doprint "SUCCESS\n";
|
2010-11-03 02:57:43 +08:00
|
|
|
if ($output =~ m/^(Bisecting: .*\(roughly \d+ steps?\))\s+\[([[:xdigit:]]+)\]/) {
|
2010-11-03 02:57:33 +08:00
|
|
|
doprint "$1 [$2]\n";
|
|
|
|
} elsif ($output =~ m/^([[:xdigit:]]+) is the first bad commit/) {
|
|
|
|
$bisect_bad = $1;
|
|
|
|
doprint "Found bad commit... $1\n";
|
|
|
|
return 0;
|
2010-11-03 02:57:43 +08:00
|
|
|
} else {
|
|
|
|
# we already logged it, just print it now.
|
|
|
|
print $output;
|
2010-11-03 02:57:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub bisect {
|
|
|
|
my ($i) = @_;
|
|
|
|
|
|
|
|
my $result;
|
|
|
|
|
|
|
|
die "BISECT_GOOD[$i] not defined\n" if (!defined($opt{"BISECT_GOOD[$i]"}));
|
|
|
|
die "BISECT_BAD[$i] not defined\n" if (!defined($opt{"BISECT_BAD[$i]"}));
|
|
|
|
die "BISECT_TYPE[$i] not defined\n" if (!defined($opt{"BISECT_TYPE[$i]"}));
|
|
|
|
|
|
|
|
my $good = $opt{"BISECT_GOOD[$i]"};
|
|
|
|
my $bad = $opt{"BISECT_BAD[$i]"};
|
|
|
|
my $type = $opt{"BISECT_TYPE[$i]"};
|
|
|
|
|
|
|
|
$in_bisect = 1;
|
|
|
|
|
|
|
|
run_command "git bisect start" or
|
|
|
|
dodie "could not start bisect";
|
|
|
|
|
|
|
|
run_command "git bisect good $good" or
|
|
|
|
dodie "could not set bisect good to $good";
|
|
|
|
|
|
|
|
run_command "git bisect bad $bad" or
|
|
|
|
dodie "could not set bisect good to $bad";
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
# Can't have a test without having a test to run
|
|
|
|
if ($type eq "test" && !defined($run_test)) {
|
|
|
|
$type = "boot";
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
do {
|
|
|
|
$result = run_bisect $type;
|
|
|
|
} while ($result);
|
|
|
|
|
|
|
|
run_command "git bisect log" or
|
|
|
|
dodie "could not capture git bisect log";
|
|
|
|
|
|
|
|
run_command "git bisect reset" or
|
|
|
|
dodie "could not reset git bisect";
|
|
|
|
|
|
|
|
doprint "Bad commit was [$bisect_bad]\n";
|
|
|
|
|
|
|
|
$in_bisect = 0;
|
|
|
|
|
|
|
|
success $i;
|
|
|
|
}
|
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
read_config $ARGV[0];
|
|
|
|
|
|
|
|
# mandatory configs
|
|
|
|
die "MACHINE not defined\n" if (!defined($opt{"MACHINE"}));
|
|
|
|
die "SSH_USER not defined\n" if (!defined($opt{"SSH_USER"}));
|
|
|
|
die "BUILD_DIR not defined\n" if (!defined($opt{"BUILD_DIR"}));
|
|
|
|
die "OUTPUT_DIR not defined\n" if (!defined($opt{"OUTPUT_DIR"}));
|
|
|
|
die "BUILD_TARGET not defined\n" if (!defined($opt{"BUILD_TARGET"}));
|
2010-11-03 02:57:21 +08:00
|
|
|
die "TARGET_IMAGE not defined\n" if (!defined($opt{"TARGET_IMAGE"}));
|
2010-11-03 03:01:32 +08:00
|
|
|
die "POWER_CYCLE not defined\n" if (!defined($opt{"POWER_CYCLE"}));
|
|
|
|
die "CONSOLE not defined\n" if (!defined($opt{"CONSOLE"}));
|
|
|
|
die "LOCALVERSION not defined\n" if (!defined($opt{"LOCALVERSION"}));
|
|
|
|
die "GRUB_MENU not defined\n" if (!defined($opt{"GRUB_MENU"}));
|
|
|
|
|
|
|
|
chdir $opt{"BUILD_DIR"} || die "can't change directory to $opt{BUILD_DIR}";
|
|
|
|
|
|
|
|
$target = "$opt{SSH_USER}\@$opt{MACHINE}";
|
|
|
|
|
|
|
|
doprint "\n\nSTARTING AUTOMATED TESTS\n";
|
|
|
|
|
|
|
|
|
|
|
|
$make = "$opt{MAKE_CMD} O=$opt{OUTPUT_DIR}";
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
sub set_build_option {
|
|
|
|
my ($name, $i) = @_;
|
2010-11-03 03:01:32 +08:00
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
my $option = "$name\[$i\]";
|
2010-11-03 02:57:01 +08:00
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
if (defined($opt{$option})) {
|
|
|
|
return $opt{$option};
|
2010-11-03 02:57:33 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
if (defined($opt{$name})) {
|
|
|
|
return $opt{$name};
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:43 +08:00
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
# First we need to do is the builds
|
|
|
|
for (my $i = 1; $i <= $opt{"NUM_BUILDS"}; $i++) {
|
|
|
|
my $type = "BUILD_TYPE[$i]";
|
|
|
|
|
|
|
|
$noclean = set_build_option("BUILD_NOCLEAN", $i);
|
|
|
|
$minconfig = set_build_option("MIN_CONFIG", $i);
|
|
|
|
$run_test = set_build_option("TEST", $i);
|
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
doprint "\n\n";
|
|
|
|
doprint "RUNNING TEST $i of $opt{NUM_BUILDS} with option $opt{$type}\n\n";
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if ($opt{$type} eq "bisect") {
|
|
|
|
bisect $i;
|
|
|
|
next;
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
if ($opt{$type} ne "nobuild") {
|
|
|
|
build $opt{$type};
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
get_grub_index;
|
|
|
|
get_version;
|
2010-11-03 03:01:32 +08:00
|
|
|
install;
|
|
|
|
monitor;
|
2010-11-03 02:57:43 +08:00
|
|
|
|
|
|
|
if (defined($run_test)) {
|
|
|
|
do_run_test;
|
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:33 +08:00
|
|
|
success $i;
|
2010-11-03 03:01:32 +08:00
|
|
|
}
|
|
|
|
|
2010-11-03 02:57:01 +08:00
|
|
|
if ($opt{"POWEROFF_ON_SUCCESS"}) {
|
2010-11-03 02:57:21 +08:00
|
|
|
halt;
|
|
|
|
} else {
|
|
|
|
reboot;
|
2010-11-03 02:57:01 +08:00
|
|
|
}
|
2010-11-03 02:57:21 +08:00
|
|
|
|
2010-11-03 03:01:32 +08:00
|
|
|
exit 0;
|