2001-01-04 06:35:55 +05:30
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
# multibuild.pl
|
|
|
|
# Tests BusyBox-0.48 (at least) to see if each applet builds
|
|
|
|
# properly on its own. The most likely problems this will
|
|
|
|
# flush out are those involving preprocessor instructions in
|
|
|
|
# utility.c.
|
2001-02-02 04:13:49 +05:30
|
|
|
#
|
|
|
|
# TODO: some time it might be nice to list absolute and
|
|
|
|
# differential object sizes for each option...
|
|
|
|
#
|
2001-01-04 06:35:55 +05:30
|
|
|
|
|
|
|
$logfile = "multibuild.log";
|
|
|
|
|
2001-02-02 04:13:49 +05:30
|
|
|
# How to handle all the BB_FEATURE_FOO lines
|
|
|
|
if ($ARGV[0] eq "-all" ) { shift(@ARGV); $choice="all"; }
|
|
|
|
if ($ARGV[0] eq "-none") { shift(@ARGV); $choice="none"; }
|
|
|
|
# neither means, leave that part of Config.h alone
|
|
|
|
|
2001-01-04 06:35:55 +05:30
|
|
|
# Support building from pristine source
|
|
|
|
$make_opt = "-f $ARGV[0]/Makefile BB_SRC_DIR=$ARGV[0]" if ($ARGV[0] ne "");
|
|
|
|
|
|
|
|
# Move the config file to a safe place
|
|
|
|
-e "Config.h.orig" || 0==system("mv -f Config.h Config.h.orig") || die;
|
|
|
|
|
|
|
|
# Clear previous log file, if any
|
|
|
|
unlink($logfile);
|
|
|
|
|
|
|
|
# Parse the config file
|
|
|
|
open(C,"<Config.h.orig") || die;
|
|
|
|
while (<C>) {
|
|
|
|
if ($in_trailer) {
|
2001-02-02 04:13:49 +05:30
|
|
|
if (!$in_olympus) {
|
|
|
|
s/^\/\/#/#/ if ($choice eq "all" && !/USE_DEVPS_PATCH/);
|
|
|
|
s/^#/\/\/#/ if ($choice eq "none");
|
|
|
|
}
|
|
|
|
$in_olympus=1 if /End of Features List/;
|
2001-01-04 06:35:55 +05:30
|
|
|
$trailer .= $_;
|
|
|
|
} else {
|
|
|
|
$in_trailer=1 if /End of Applications List/;
|
2001-01-30 00:30:48 +05:30
|
|
|
if (/^\/*#define BB_([A-Z0-9_]*)/) {
|
2001-01-04 06:35:55 +05:30
|
|
|
push @apps, $1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close C;
|
|
|
|
|
|
|
|
# Do the real work ...
|
2001-02-02 04:13:49 +05:30
|
|
|
$failed_tests=0;
|
2001-01-04 06:35:55 +05:30
|
|
|
for $a (@apps) {
|
|
|
|
# print "Testing build of applet $a ...\n";
|
|
|
|
open (O, ">Config.h") || die;
|
|
|
|
print O "#define BB_$a\n", $trailer;
|
|
|
|
close O;
|
|
|
|
system("echo -e '\n***\n$a\n***' >>$logfile");
|
|
|
|
# todo: figure out why the "rm -f *.o" is needed
|
|
|
|
$result{$a} = system("rm -f *.o; make $make_opt busybox >>$logfile 2>&1");
|
2001-02-02 04:13:49 +05:30
|
|
|
$flag = $result{$a} ? "FAILED!!!" : "ok";
|
|
|
|
printf("Applet %-20s: %s\n", $a, $flag);
|
|
|
|
$total_tests++;
|
|
|
|
$failed_tests++ if $flag eq "FAILED!!!";
|
|
|
|
# pause long enough to let user stop us with a ^C
|
|
|
|
select(undef, undef, undef, 0.05);
|
2001-01-04 06:35:55 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
# Clean up our mess
|
|
|
|
system("mv -f Config.h.orig Config.h");
|
|
|
|
|
2001-02-02 04:13:49 +05:30
|
|
|
print "$total_tests applets tested, $failed_tests failures\n";
|
2001-01-04 06:35:55 +05:30
|
|
|
print "See $logfile for details.\n";
|
|
|
|
|