ktest.pl 18.2 KB
Newer Older
S
Steven Rostedt 已提交
1
#!/usr/bin/perl -w
2 3 4 5
#
# Copywrite 2010 - Steven Rostedt <srostedt@redhat.com>, Red Hat Inc.
# Licensed under the terms of the GNU GPL License version 2
#
S
Steven Rostedt 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

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";
22
$opt{"TIMEOUT"}			= 120;
S
Steven Rostedt 已提交
23 24
$opt{"TMP_DIR"}			= "/tmp/autotest";
$opt{"SLEEP_TIME"}		= 60;	# sleep time between tests
25
$opt{"BUILD_NOCLEAN"}		= 0;
26
$opt{"REBOOT_ON_ERROR"}		= 0;
27
$opt{"POWEROFF_ON_ERROR"}	= 0;
S
Steven Rostedt 已提交
28
$opt{"REBOOT_ON_SUCCESS"}	= 1;
29
$opt{"POWEROFF_ON_SUCCESS"}	= 0;
30
$opt{"BUILD_OPTIONS"}		= "";
31
$opt{"BISECT_SLEEP_TIME"}	= 10;   # sleep time between bisects
32 33 34 35
$opt{"CLEAR_LOG"}		= 0;
$opt{"SUCCESS_LINE"}		= "login:";
$opt{"BOOTED_TIMEOUT"}		= 1;
$opt{"DIE_ON_FAILURE"}		= 1;
S
Steven Rostedt 已提交
36 37 38 39 40

my $version;
my $grub_number;
my $target;
my $make;
41
my $noclean;
42
my $minconfig;
43
my $addconfig;
44 45
my $in_bisect = 0;
my $bisect_bad = "";
46
my $reverse_bisect;
S
Steven Rostedt 已提交
47
my $in_patchcheck = 0;
48
my $run_test;
S
Steven Rostedt 已提交
49
my $redirect;
S
Steven Rostedt 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

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);
}

72
sub logit {
S
Steven Rostedt 已提交
73 74 75 76 77 78 79
    if (defined($opt{"LOG_FILE"})) {
	open(OUT, ">> $opt{LOG_FILE}") or die "Can't write to $opt{LOG_FILE}";
	print OUT @_;
	close(OUT);
    }
}

80 81 82 83 84
sub doprint {
    print @_;
    logit @_;
}

85
sub dodie {
86
    doprint "CRITICAL FAILURE... ", @_, "\n";
87

88 89 90 91 92
    if ($opt{"REBOOT_ON_ERROR"}) {
	doprint "REBOOTING\n";
	`$opt{"POWER_CYCLE"}`;

    } elsif ($opt{"POWEROFF_ON_ERROR"} && defined($opt{"POWER_OFF"})) {
93 94 95
	doprint "POWERING OFF\n";
	`$opt{"POWER_OFF"}`;
    }
96

97 98 99
    die @_;
}

100 101 102 103 104 105 106 107 108 109
sub fail {

	if ($opt{"DIE_ON_FAILURE"}) {
		dodie @_;
	}

	doprint "Failed: ", @_, "\n";
	return 1;
}

S
Steven Rostedt 已提交
110 111
sub run_command {
    my ($command) = @_;
112 113 114 115 116 117 118
    my $dolog = 0;
    my $dord = 0;
    my $pid;

    doprint("$command ... ");

    $pid = open(CMD, "$command 2>&1 |") or
119
	(fail "unable to exec $command" and return 0);
S
Steven Rostedt 已提交
120 121

    if (defined($opt{"LOG_FILE"})) {
122 123 124
	open(LOG, ">>$opt{LOG_FILE}") or
	    dodie "failed to write to log";
	$dolog = 1;
S
Steven Rostedt 已提交
125 126 127
    }

    if (defined($redirect)) {
128 129 130
	open (RD, ">$redirect") or
	    dodie "failed to write to redirect $redirect";
	$dord = 1;
S
Steven Rostedt 已提交
131 132
    }

133 134 135 136
    while (<CMD>) {
	print LOG if ($dolog);
	print RD  if ($dord);
    }
S
Steven Rostedt 已提交
137

138
    waitpid($pid, 0);
S
Steven Rostedt 已提交
139 140
    my $failed = $?;

141 142 143 144
    close(CMD);
    close(LOG) if ($dolog);
    close(RD)  if ($dord);

S
Steven Rostedt 已提交
145 146 147 148 149 150
    if ($failed) {
	doprint "FAILED!\n";
    } else {
	doprint "SUCCESS\n";
    }

151 152 153 154 155
    return !$failed;
}

sub get_grub_index {

156
    return if (defined($grub_number));
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174

    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";
S
Steven Rostedt 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
}

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;
}

210
sub reboot_to {
S
Steven Rostedt 已提交
211 212 213
    run_command "ssh $target '(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'";
}

214 215 216
sub open_console {
    my ($fp) = @_;

S
Steven Rostedt 已提交
217
    my $flags;
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

    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 {
S
Steven Rostedt 已提交
241 242 243
    my $booted = 0;
    my $bug = 0;
    my $pid;
244
    my $skip_call_trace = 0;
245
    my $fp = \*IN;
246
    my $loops;
S
Steven Rostedt 已提交
247

248
    $pid = open_console($fp);
S
Steven Rostedt 已提交
249 250 251 252 253 254 255

    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 {
256
	$line = wait_for_input($fp, 5);
S
Steven Rostedt 已提交
257 258
    } while (defined($line));

259
    reboot_to;
S
Steven Rostedt 已提交
260 261 262

    for (;;) {

263 264 265 266 267
	if ($booted) {
	    $line = wait_for_input($fp, $opt{"BOOTED_TIMEOUT"});
	} else {
	    $line = wait_for_input($fp);
	}
S
Steven Rostedt 已提交
268 269 270 271 272 273 274 275

	last if (!defined($line));

	doprint $line;

	# we are not guaranteed to get a full line
	$full_line .= $line;

276
	if ($full_line =~ /$opt{"SUCCESS_LINE"}/) {
S
Steven Rostedt 已提交
277 278 279
	    $booted = 1;
	}

280 281 282 283
	if ($full_line =~ /\[ backtrace testing \]/) {
	    $skip_call_trace = 1;
	}

S
Steven Rostedt 已提交
284
	if ($full_line =~ /call trace:/i) {
285 286 287 288 289 290 291 292
	    $bug = 1 if (!$skip_call_trace);
	}

	if ($full_line =~ /\[ end of backtrace testing \]/) {
	    $skip_call_trace = 0;
	}

	if ($full_line =~ /Kernel panic -/) {
S
Steven Rostedt 已提交
293 294 295 296 297 298 299 300
	    $bug = 1;
	}

	if ($line =~ /\n/) {
	    $full_line = "";
	}
    }

301
    close_console($fp, $pid);
S
Steven Rostedt 已提交
302 303

    if (!$booted) {
304 305
	return 0 if ($in_bisect);
	fail "failed - never got a boot prompt.\n" and return 0;
S
Steven Rostedt 已提交
306 307 308
    }

    if ($bug) {
309 310
	return 0 if ($in_bisect);
	fail "failed - got a bug report\n" and return 0;
S
Steven Rostedt 已提交
311
    }
312

313
    return 1;
S
Steven Rostedt 已提交
314 315 316 317
}

sub install {

318
    run_command "scp $opt{OUTPUT_DIR}/$opt{BUILD_TARGET} $target:$opt{TARGET_IMAGE}" or
319
	dodie "failed to copy image";
S
Steven Rostedt 已提交
320

321
    my $install_mods = 0;
S
Steven Rostedt 已提交
322

323 324 325 326 327 328 329
    # 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;
330
	}
331 332
    }
    close(IN);
333

334 335 336 337
    if (!$install_mods) {
	doprint "No modules needed\n";
	return;
    }
S
Steven Rostedt 已提交
338

339 340
    run_command "$make INSTALL_MOD_PATH=$opt{TMP_DIR} modules_install" or
	dodie "Failed to install modules";
341

342 343
    my $modlib = "/lib/modules/$version";
    my $modtar = "autotest-mods.tar.bz2";
344

345 346
    run_command "ssh $target rm -rf $modlib" or
	dodie "failed to remove old mods: $modlib";
347

348 349 350 351 352 353 354 355 356 357 358
    # 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";
S
Steven Rostedt 已提交
359

360
    run_command "ssh $target rm -f /tmp/$modtar";
S
Steven Rostedt 已提交
361 362
}

S
Steven Rostedt 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
sub check_buildlog {
    my ($patch) = @_;

    my $buildlog = "$opt{TMP_DIR}/buildlog";
    my @files = `git show $patch | diffstat -l`;

    open(IN, "git show $patch |") or
	dodie "failed to show $patch";
    while (<IN>) {
	if (m,^--- a/(.*),) {
	    chomp $1;
	    $files[$#files] = $1;
	}
    }
    close(IN);

    open(IN, $buildlog) or dodie "Can't open $buildlog";
    while (<IN>) {
	if (/^\s*(.*?):.*(warning|error)/) {
	    my $err = $1;
	    foreach my $file (@files) {
		my $fullpath = "$opt{BUILD_DIR}/$file";
		if ($file eq $err || $fullpath eq $err) {
386
		    fail "$file built with warnings" and return 0;
S
Steven Rostedt 已提交
387 388 389 390 391
		}
	    }
	}
    }
    close(IN);
392 393

    return 1;
S
Steven Rostedt 已提交
394 395
}

S
Steven Rostedt 已提交
396 397
sub build {
    my ($type) = @_;
398 399 400
    my $defconfig = "";
    my $append = "";

401
    if ($type =~ /^useconfig:(.*)/) {
402
	run_command "cp $1 $opt{OUTPUT_DIR}/.config" or
403
	    dodie "could not copy $1 to .config";
404

405 406 407
	$type = "oldconfig";
    }

408 409 410
    # old config can ask questions
    if ($type eq "oldconfig") {
	$append = "yes ''|";
411 412 413 414

	# allow for empty configs
	run_command "touch $opt{OUTPUT_DIR}/.config";

415
	run_command "mv $opt{OUTPUT_DIR}/.config $opt{OUTPUT_DIR}/config_temp" or
416
	    dodie "moving .config";
S
Steven Rostedt 已提交
417

418
	if (!$noclean && !run_command "$make mrproper") {
419 420
	    dodie "make mrproper";
	}
S
Steven Rostedt 已提交
421

422
	run_command "mv $opt{OUTPUT_DIR}/config_temp $opt{OUTPUT_DIR}/.config" or
423 424 425 426
	    dodie "moving config_temp";

    } elsif (!$noclean) {
	unlink "$opt{OUTPUT_DIR}/.config";
427
	run_command "$make mrproper" or
428 429
	    dodie "make mrproper";
    }
S
Steven Rostedt 已提交
430 431

    # add something to distinguish this build
432
    open(OUT, "> $opt{OUTPUT_DIR}/localversion") or dodie("Can't make localversion file");
S
Steven Rostedt 已提交
433 434 435
    print OUT "$opt{LOCALVERSION}\n";
    close(OUT);

436 437
    if (defined($minconfig)) {
	$defconfig = "KCONFIG_ALLCONFIG=$minconfig";
S
Steven Rostedt 已提交
438 439
    }

440
    run_command "$defconfig $append $make $type" or
441
	dodie "failed make config";
S
Steven Rostedt 已提交
442

S
Steven Rostedt 已提交
443 444 445 446 447
    # patch check will examine the log
    if ($in_patchcheck) {
	$redirect = "$opt{TMP_DIR}/buildlog";
    }

448
    if (!run_command "$make $opt{BUILD_OPTIONS}") {
S
Steven Rostedt 已提交
449
	undef $redirect;
450
	# bisect may need this to pass
451 452
	return 0 if ($in_bisect);
	fail "failed build" and return 0;
S
Steven Rostedt 已提交
453
    }
S
Steven Rostedt 已提交
454
    undef $redirect;
455

456
    return 1;
S
Steven Rostedt 已提交
457 458
}

459 460
sub reboot {
    # try to reboot normally
461
    if (!run_command "ssh $target reboot") {
462 463 464 465 466 467
	# nope? power cycle it.
	run_command "$opt{POWER_CYCLE}";
    }
}

sub halt {
468
    if (!run_command "ssh $target halt" or defined($opt{"POWER_OFF"})) {
469 470 471 472 473
	# nope? the zap it!
	run_command "$opt{POWER_OFF}";
    }
}

474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
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";
}

498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
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) {
570 571
	return 0 if $in_bisect;
	fail "test failed" and return 0;
572
    }
573
    return 1;
574 575
}

576 577 578
sub run_bisect {
    my ($type) = @_;

579
    my $failed = 0;
580 581 582 583 584
    my $result;
    my $output;
    my $ret;

    if (defined($minconfig)) {
585
	build "useconfig:$minconfig" or $failed = 1;
586 587
    } else {
	# ?? no config to use?
588
	build "oldconfig" or $failed = 1;
589 590 591
    }

    if ($type ne "build") {
592
	fail "Failed on build" if $failed;
593 594 595 596 597

	# Now boot the box
	get_grub_index;
	get_version;
	install;
598
	monitor or $failed = 1;
599 600

	if ($type ne "boot") {
601
	    fail "Failed on boot" if $failed;
602

603
	    do_run_test or $failed = 1;
604 605 606 607 608
	}
    }

    if ($failed) {
	$result = "bad";
609 610 611 612 613 614 615

	# reboot the box to a good kernel
	if ($type eq "boot") {
	    reboot;
	    doprint "sleep a little for reboot\n";
	    sleep $opt{"BISECT_SLEEP_TIME"};
	}
616 617 618 619
    } else {
	$result = "good";
    }

620 621 622 623 624 625 626 627 628
    # Are we looking for where it worked, not failed?
    if ($reverse_bisect) {
	if ($failed) {
	    $result = "good";
	} else {
	    $result = "bad";
	}
    }

629 630 631 632 633 634 635 636
    doprint "git bisect $result ... ";
    $output = `git bisect $result 2>&1`;
    $ret = $?;

    logit $output;

    if ($ret) {
	doprint "FAILED\n";
637
	fail "Failed to git bisect";
638 639 640
    }

    doprint "SUCCESS\n";
641
    if ($output =~ m/^(Bisecting: .*\(roughly \d+ steps?\))\s+\[([[:xdigit:]]+)\]/) {
642 643 644 645 646
	doprint "$1 [$2]\n";
    } elsif ($output =~ m/^([[:xdigit:]]+) is the first bad commit/) {
	$bisect_bad = $1;
	doprint "Found bad commit... $1\n";
	return 0;
647 648 649
    } else {
	# we already logged it, just print it now.
	print $output;
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
    }


    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]"};

669 670 671 672 673 674 675 676
    if (defined($opt{"BISECT_REVERSE[$i]"}) &&
	$opt{"BISECT_REVERSE[$i]"} == 1) {
	doprint "Performing a reverse bisect (bad is good, good is bad!)\n";
	$reverse_bisect = 1;
    } else {
	$reverse_bisect = 0;
    }

677 678 679
    $in_bisect = 1;

    run_command "git bisect start" or
680
	fail "could not start bisect";
681 682

    run_command "git bisect good $good" or
683
	fail "could not set bisect good to $good";
684 685

    run_command "git bisect bad $bad" or
686
	fail "could not set bisect good to $bad";
687

688 689 690 691 692
    # Can't have a test without having a test to run
    if ($type eq "test" && !defined($run_test)) {
	$type = "boot";
    }

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
    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;
}

S
Steven Rostedt 已提交
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
sub patchcheck {
    my ($i) = @_;

    die "PATCHCHECK_START[$i] not defined\n"
	if (!defined($opt{"PATCHCHECK_START[$i]"}));
    die "PATCHCHECK_TYPE[$i] not defined\n"
	if (!defined($opt{"PATCHCHECK_TYPE[$i]"}));

    my $start = $opt{"PATCHCHECK_START[$i]"};

    my $end = "HEAD";
    if (defined($opt{"PATCHCHECK_END[$i]"})) {
	$end = $opt{"PATCHCHECK_END[$i]"};
    }

    my $type = $opt{"PATCHCHECK_TYPE[$i]"};

    # Can't have a test without having a test to run
    if ($type eq "test" && !defined($run_test)) {
	$type = "boot";
    }

    open (IN, "git log --pretty=oneline $end|") or
	dodie "could not get git list";

    my @list;

    while (<IN>) {
	chomp;
	$list[$#list+1] = $_;
	last if (/^$start/);
    }
    close(IN);

    if ($list[$#list] !~ /^$start/) {
745
	fail "SHA1 $start not found";
S
Steven Rostedt 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
    }

    # go backwards in the list
    @list = reverse @list;

    my $save_clean = $noclean;

    $in_patchcheck = 1;
    foreach my $item (@list) {
	my $sha1 = $item;
	$sha1 =~ s/^([[:xdigit:]]+).*/$1/;

	doprint "\nProcessing commit $item\n\n";

	run_command "git checkout $sha1" or
	    die "Failed to checkout $sha1";

	# only clean on the first and last patch
	if ($item eq $list[0] ||
	    $item eq $list[$#list]) {
	    $noclean = $save_clean;
	} else {
	    $noclean = 1;
	}

	if (defined($minconfig)) {
772
	    build "useconfig:$minconfig" or return 0;
S
Steven Rostedt 已提交
773 774
	} else {
	    # ?? no config to use?
775
	    build "oldconfig" or return 0;
S
Steven Rostedt 已提交
776 777
	}

778
	check_buildlog $sha1 or return 0;
S
Steven Rostedt 已提交
779 780 781 782 783 784

	next if ($type eq "build");

	get_grub_index;
	get_version;
	install;
785
	monitor or return 0;
S
Steven Rostedt 已提交
786 787

	next if ($type eq "boot");
788
	do_run_test or next;
S
Steven Rostedt 已提交
789 790 791
    }
    $in_patchcheck = 0;
    success $i;
792 793

    return 1;
S
Steven Rostedt 已提交
794 795
}

S
Steven Rostedt 已提交
796 797 798 799 800 801 802 803
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"}));
804
die "TARGET_IMAGE not defined\n"	if (!defined($opt{"TARGET_IMAGE"}));
S
Steven Rostedt 已提交
805 806 807 808 809 810 811 812 813
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}";

814 815 816
if ($opt{"CLEAR_LOG"} && defined($opt{"LOG_FILE"})) {
    unlink $opt{"LOG_FILE"};
}
S
Steven Rostedt 已提交
817

818 819 820 821 822
doprint "\n\nSTARTING AUTOMATED TESTS\n\n";

foreach my $option (sort keys %opt) {
    doprint "$option = $opt{$option}\n";
}
S
Steven Rostedt 已提交
823 824 825

$make = "$opt{MAKE_CMD} O=$opt{OUTPUT_DIR}";

826 827
sub set_build_option {
    my ($name, $i) = @_;
S
Steven Rostedt 已提交
828

829
    my $option = "$name\[$i\]";
830

831 832
    if (defined($opt{$option})) {
	return $opt{$option};
833 834
    }

835 836
    if (defined($opt{$name})) {
	return $opt{$name};
S
Steven Rostedt 已提交
837 838
    }

839 840 841 842 843 844 845
    return undef;
}

# First we need to do is the builds
for (my $i = 1; $i <= $opt{"NUM_BUILDS"}; $i++) {
    my $type = "BUILD_TYPE[$i]";

S
Steven Rostedt 已提交
846 847 848 849
    if (!defined($opt{$type})) {
	$opt{$type} = $opt{"DEFAULT_BUILD_TYPE"};
    }

850 851 852
    $noclean = set_build_option("BUILD_NOCLEAN", $i);
    $minconfig = set_build_option("MIN_CONFIG", $i);
    $run_test = set_build_option("TEST", $i);
853
    $addconfig = set_build_option("ADD_CONFIG", $i);
854

S
Steven Rostedt 已提交
855 856 857
    doprint "\n\n";
    doprint "RUNNING TEST $i of $opt{NUM_BUILDS} with option $opt{$type}\n\n";

858 859 860 861 862 863 864 865 866
    if (!defined($minconfig)) {
	$minconfig = $addconfig;

    } elsif (defined($addconfig)) {
	run_command "cat $addconfig $minconfig > $opt{TMP_DIR}/use_config" or
	    dodie "Failed to create temp config";
	$minconfig = "$opt{TMP_DIR}/use_config";
    }

S
Steven Rostedt 已提交
867 868 869 870 871 872
    my $checkout = $opt{"CHECKOUT[$i]"};
    if (defined($checkout)) {
	run_command "git checkout $checkout" or
	    die "failed to checkout $checkout";
    }

873 874 875
    if ($opt{$type} eq "bisect") {
	bisect $i;
	next;
S
Steven Rostedt 已提交
876 877 878
    } elsif ($opt{$type} eq "patchcheck") {
	patchcheck $i;
	next;
S
Steven Rostedt 已提交
879 880
    }

881
    if ($opt{$type} ne "nobuild") {
882
	build $opt{$type} or next;
S
Steven Rostedt 已提交
883 884
    }

885 886
    get_grub_index;
    get_version;
S
Steven Rostedt 已提交
887
    install;
888
    monitor or next;
889 890

    if (defined($run_test)) {
891
	do_run_test or next;
892 893
    }

894
    success $i;
S
Steven Rostedt 已提交
895 896
}

897
if ($opt{"POWEROFF_ON_SUCCESS"}) {
898
    halt;
S
Steven Rostedt 已提交
899
} elsif ($opt{"REBOOT_ON_SUCCESS"}) {
900
    reboot;
901
}
902

S
Steven Rostedt 已提交
903
exit 0;