X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=blobdiff_plain;f=bin%2Fhammock;h=f742304f35a57b2dbb2f90eb72832f83c85a9618;hp=16053edd5b425ae96368bf6edf3cf1645590c4c0;hb=6be7803d9a82fd6bbadf7df6de0ae5472038ed88;hpb=1ca3a51056b03b424d2ab531b43ef75c8d67fc43 diff --git a/bin/hammock b/bin/hammock index 16053ed..f742304 100755 --- a/bin/hammock +++ b/bin/hammock @@ -1,5 +1,4 @@ #! /usr/bin/perl -# $Id$ use strict; use warnings; @@ -10,11 +9,9 @@ my $start=time(); my $gdbcvsmaster=$ENV{"HOME"}."/redhat/gdb-cvs-master"; my $binutilscvsmaster=$ENV{"HOME"}."/redhat/binutils-cvs-master"; -my $archermaster=$ENV{"HOME"}."/redhat/archer-master"; -my $fedoracvsroot=q{:pserver:anonymous:@cvs.fedoraproject.org:/cvs/pkgs}; -#Unknown host cvs.devel.redhat.com. -#my $rhelcvsroot=q{:pserver:anonymous:@cvs.devel.redhat.com:/cvs/dist}; -my $rhelcvsroot=q{:pserver:anonymous:@192.168.67.2:3401/cvs/dist}; +my $archermaster=$ENV{"HOME"}."/redhat/gdb-master"; +my $fedoragitroot=q{git://pkgs.fedoraproject.org}; +my $rhelgitroot=q{git://pkgs.devel.redhat.com/rpms}; my $arch_i386=qr{(?:x86|i\d86|ia32)}io; my $arch_x86_64=qr{(?:x8664|x86_64|em64t)}io; my $resultdir=$ENV{"HOME"}."/.hammock-result"; @@ -29,7 +26,7 @@ sub error my $userid; my $force; -my $parallel=9; # 1 or 2 or 3 +my $parallel=1; my @distro; my @componentdistro; my @path; @@ -43,12 +40,28 @@ my $branch; # FIXME: Connect make paralellization to the children. my $distrojobs; my $gdbcvspie; +my $strip; +# FIXME: 20100911servpatched-f14: +# readchar: Connection reset by peer +# Remote side has terminated connection. GDBserver will reopen the connection. +# Can't bind address: Address already in use. +# +my $gdbserver; +my $valgrind; +my $bfd32; +my $gdbindex; +my $dwarf; +# Use --dwarf=40 for: --dwarf=4 -fno-debug-types-section +# Use --dwarf=41 for: --dwarf=4 -fdebug-types-section +my $stabs; +my $debug_types_section; +my $orphanripper=1; +my $options; die if !GetOptions( "i|userid=s"=>\$userid, "force"=>\$force, - "1|serial"=>sub { $parallel=1; }, - "2|standard"=>sub { $parallel=2; }, - "3|parallel"=>sub { $parallel=3; }, + "serial"=>sub { $parallel=0; }, + "parallel"=>sub { $parallel=1; }, "d|distro=s{,}"=>\@distro, "cd|componentdistro=s{,}"=>\@componentdistro, "p|path=s{,}"=>\@path, @@ -61,6 +74,15 @@ die if !GetOptions( "configure=s"=>\$configure, "branch=s"=>\$branch, "gdbcvspie"=>\$gdbcvspie, + "strip"=>\$strip, + "gdbserver"=>\$gdbserver, + "valgrind"=>\$valgrind, + "bfd32"=>\$bfd32, + "gdbindex"=>\$gdbindex, + "dwarf=i"=>\$dwarf, + "stabs=i"=>\$stabs, + "orphanripper!"=>\$orphanripper, + "options=s"=>\$options, ); $component and ($component=~m{^(?:(?:fedora|rhel)(?:gdb|binutils|glibc)|gdbcvs|binutilscvs|archer-.*|/home/.*)$} or die "-c|--component required to be: fedoragdb|rhelgdb|fedorabinutils|rhelbinutils|fedoraglibc|rhelglibc|gdbcvs|binutilscvs|archer-*|/home/*"); $component and $component=~m{^/home/} and (-f "$component/gdb/gdbtypes.c" or die "$component/gdb/gdbtypes.c not found"); @@ -75,23 +97,36 @@ if ($component=~/^(gdb|binutils)cvs$/) { } !$gdbcvspie or $component eq "gdbcvs" or die "--gdbcvspie requires -c gdbcvs"; @target and ($srcrpm or $component=~/^(?:fedora|rhel)/) and die "--target is available only for baretestsuite modes"; +$strip and ($srcrpm or $component=~/^(?:fedora|rhel)/) and die "--strip is available only for baretestsuite modes"; +$options and ($srcrpm or $component=~/^(?:fedora|rhel)/) and die "--options is available only for baretestsuite modes"; +$gdbserver and $component!~/^(?:gdbcvs|archer-.*)$/ and die "--gdbserver is available only for gdbcvs or archer-*"; +$valgrind and $component!~/^(?:gdbcvs|archer-.*)$/ and die "--valgrind is available only for gdbcvs or archer-*"; +$gdbserver and $valgrind and die "--gdbserver and --valgrind are mutually exclusive"; +($gdbserver || $valgrind) and $gdbindex and die "--gdbserver|--valgrind and --gdbindex are mutually exclusive"; +do { $debug_types_section=0; $dwarf=4; } if ($dwarf||0)==40; +do { $debug_types_section=1; $dwarf=4; } if ($dwarf||0)==41; +!defined $dwarf or ($dwarf>=2 && $dwarf<=4) or die "--dwarf requires DWARF version number"; +!defined $stabs or ($stabs>=0 && $stabs<=2) or die "--stabs is 0=off or 1=-gstabs or 2=-gstabs+"; +($gdbserver || $valgrind || $gdbindex) and ($dwarf || $stabs) and die "--gdbserver|--valgrind|--gdbindex and --dwarf|--stabs are mutually exclusive"; +$orphanripper=($orphanripper?"orphanripper":""); my %target; do { error "Duplicate target: $_\n" if $target{$_}++; } for @target; @arch="x86_64" if @target&&!@arch; for my $file (@file) { -f $file and -r $file or error "-f|--file $file not readable: $!"; } +push @file,"/home/jkratoch/redhat/fedora/gdb/master/gdb-index-assert.patch" if $component=~/^(?:gdbcvs|archer-)/; +push @file,"/home/jkratoch/redhat/fedora/gdb/master/gdb-dejagnu-go.patch" if $component=~/^(?:gdbcvs|archer-)/; $distrojobs=(@target?1:2) if !defined $distrojobs; $distrojobs=~/^\d+$/ or die "-D|distrojobs must be a number: $distrojobs"; $distrojobs>=1 or die "-D|distrojobs must be positive: $distrojobs"; -# User may want to modify ASAP her files submitted for the test. -my $will_copy=@file || $component=~m{^/home/}; -$parallel||=$will_copy ? 2 : 1; error "Excessive arguments: @ARGV" if @ARGV; @arch=@arches if !@arch; my $path=join(":",@path) if @path; @componentdistro and @componentdistro!=@distro and die "--cd|--componentdistro must have the same elements count as -d|--distro"; +###unshift @file,"/home/jkratoch/t/gdbservergnulib.patch" if $component eq "gdbcvs"; + sub distro_normalize($;$) { my($name,$force)=@_; @@ -195,7 +230,29 @@ sub writefile close F or die $fname; } -spawn "renice 20 -p $$"; +sub readfile +{ + my($fname)=@_; + + local *F; + open F,"$fname" or die $fname; + local $/=undef(); + defined(my $r=) or die $fname; + close F or die $fname; + return $r; +} + +sub ln($$) +{ + my($old,$new)=@_; + link $old,$new or spawn "cp -p '$old' '$new'"; +} + +# /etc/cgconfig.conf +spawn "cgclassify -g '*':hammock $$ || :"; + +spawn "renice +19 -p $$"; +spawn "ionice -c3 -p $$"; newdir $dir; $log="$dir/log"; my $resultid="$resultdir/$id"; @@ -213,19 +270,28 @@ my %dump=( "file"=>join("\n",@file), "configure"=>$configure, "gdbcvspie"=>$gdbcvspie, + "gdbserver"=>$gdbserver, + "valgrind"=>$valgrind, + "bfd32"=>$bfd32, + "gdbindex"=>$gdbindex, + "dwarf"=>$dwarf, + "stabs"=>$stabs, + "debug_types_section"=>$debug_types_section, + "orphanripper"=>$orphanripper, + "options"=>$options, ); while (my($name,$val)=each(%dump)) { next if !$val; writefile "$dir/$name","$val\n"; - link "$dir/$name","$resultid/$name" or warn "link $dir/$name $resultid/$name: $!"; + ln "$dir/$name","$resultid/$name"; } for my $file (@file) { newdir "$dir/file.d","mayexist"; (my $base=$file)=~s{^.*/}{}; my $d="$dir/file.d/$base"; - link $file,$d or die "link $file $d: $!"; + ln $file,$d; newdir "$resultid/file.d","mayexist"; - link $d,"$resultid/file.d/$base" or warn "link $file $resultid/file.d/$base: $!"; + ln $d,"$resultid/file.d/$base"; } sub subst @@ -244,6 +310,20 @@ sub subst writefile $out,$_; } +sub copyfiles($) +{ + my($targetdir)=@_; + + for my $file (@file) { + my $filebase=$file; + $filebase=~s{^.*/}{}; + my $target="$targetdir/$filebase"; + # Some *.patch files may be new. + # -f $target or die "File $file does not exist at $target"; + spawn "rm -f $target; cp -p $file $target"; + } +} + # PID->distro my %child; while (@distrouse || keys(%child)) { @@ -255,20 +335,25 @@ while (@distrouse || keys(%child)) { my $rpmbuild="rpmbuild"; my $cvsbasedir; + my $gitbranch; + my $gitpkg; my $cvsroot; + my $gitroot; my $cvsrepo; + my $gitrepo; if ($component=~/^fedora(.*)$/) { - $cvsrepo=$1; - $cvsbasedir="F-$1" if $componentdistro=~/^fedora-(\d+)$/; - $cvsbasedir="devel" if $componentdistro=~/^fedora-rawhide$/; - die "$component vs. $componentdistro" if !$cvsbasedir; - $cvsroot=$fedoracvsroot; + $gitrepo=$1; + $gitbranch="f$1" if $componentdistro=~/^fedora-(\d+)/; + $gitbranch="master" if $componentdistro=~/^fedora-rawhide/; + die "$component vs. $componentdistro" if !$gitbranch; + $gitroot=$fedoragitroot; + $gitpkg="fedpkg"; } if ($component=~/^rhel(.*)$/) { - $cvsrepo=$1; - $cvsbasedir="RHEL-$1" if $componentdistro=~/^(?:epel|rhel)-(\d+)$/; - die "$component vs. $componentdistro" if !$cvsbasedir; - $cvsroot=$rhelcvsroot; + $gitrepo=$1; + $gitbranch="auto"; + $gitroot=$rhelgitroot; + $gitpkg="https_proxy= rhpkg"; # EPEL still uses Berkeley DB version 8 while F-11+ (F-10?) uses version 9. # Using db_dump and db_load would no longer make it mock compatible. $rpmbuild.=q{ --dbpath $PWD --nodeps}; @@ -280,8 +365,9 @@ while (@distrouse || keys(%child)) { newdir $distrodir; $log="$distrodir/log"; my $out="$distrodir/out"; + newdir $out; - if ($parallel>1) { + if ($parallel) { my $pid=fork(); die if !defined $pid; if ($pid) { @@ -294,7 +380,7 @@ while (@distrouse || keys(%child)) { newdir $builddir; # Do not use mockrun as the rpm database may be in a different version. - spawn "rpm -r /var/lib/mock/$distro/root -qa|sort >$distrodir/rpm-qa"; + spawn "rpm -r /var/lib/mock/$distro/root -qa|sort >$out/rpm-qa"; $::distro=$distro; sub mockrun($) @@ -302,6 +388,7 @@ while (@distrouse || keys(%child)) { my($c)=@_; $c="export PATH=\"$path:\$PATH\"; $c" if $path; + $c="export PATH=\"\$HOME/bin:\$PATH\"; $c"; $c="export MAKEFLAGS=\"-j\$[`getconf _NPROCESSORS_ONLN`*3/2]\"; $c"; $c="export http_proxy=http://127.0.0.1:3128/; $c"; $c="set -ex; cd $builddir; $c"; @@ -309,9 +396,44 @@ while (@distrouse || keys(%child)) { spawn "mockrun $::distro '$c'"; } + if ($gitbranch) { + die if !$gitroot; + die if !$gitrepo; + die if !$gitbranch; + die if !$gitpkg; + spawn "cd $distrodir; git clone ".($gitbranch eq "auto"?"":"-b $gitbranch")." $gitroot/$gitrepo $component"; + my $componentdir="$distrodir/$component"; + -d $componentdir or die "Failed checkout to: $componentdir"; + if ($gitbranch eq "auto") { + $componentdistro=~/^(?:rhel|epel)-(\d+)$/ or die $componentdistro; + my $major=$1; + my @l=grep { m{^\s*origin/rhel-$major\.\d+\s*$} } split /\n/,readfile "cd $componentdir; git branch -r |"; + sub minor + { + local $_=$_[0]; + s{^\s*origin/rhel-\d+\.(\d+)\s*$}{$1} or die; + return $_; + } + @l=sort { minor($b) <=> minor($a); } @l; + $gitbranch=($l[0]=~m{^\s*origin/(.*?)\s*$})[0] or die; + spawn "cd $componentdir; git checkout $gitbranch"; + } + copyfiles $componentdir; + spawn "cd $componentdir; $gitpkg verrel >$out/verrel"; + my $glob="$componentdir/*.src.rpm"; + @{[glob $glob]}==0 or die "Found some before test-srpm: $glob"; + # No `spawn' as we could get: + # error: unpacking of archive failed on file X;4a56efef: cpio: MD5 sum mismatch + mockrun "cd $componentdir; $gitpkg srpm"; + my @srcrpm=(glob $glob); + @srcrpm==1 or die "Did not find 1 srcrpm: @srcrpm"; + $srcrpm=$srcrpm[0]; + } + if ($cvsbasedir) { die if !$cvsroot; die if !$cvsrepo; + die if !$cvsbasedir; spawn "cd $distrodir; cvs -q -z3 -d $cvsroot co rpms/$cvsrepo/$cvsbasedir"; my $componentdir="$distrodir/rpms/$cvsrepo/$cvsbasedir"; -d $componentdir or die "Failed checkout to: $componentdir"; @@ -319,16 +441,8 @@ while (@distrouse || keys(%child)) { spawn "cd $componentdir/..; cvs -q -z3 -d $cvsroot co common"; # Workaround (RHEL-5?) curl which uses `Pragma: nocache' on $http_proxy. subst sub { s{echo "curl }{$&-H 'Pragma: cache' }; },"$componentdir/../common/Makefile.common"; - - for my $file (@file) { - my $filebase=$file; - $filebase=~s{^.*/}{}; - my $target="$componentdir/$filebase"; - # Some *.patch files may be new. - # -f $target or die "File $file does not exist at $target"; - spawn "rm -f $target; cp -p $file $target"; - } - + copyfiles $componentdir; + spawn "cd $componentdir; make verrel >$out/verrel"; my $glob="$componentdir/*.src.rpm"; @{[glob $glob]}==0 or die "Found some before test-srpm: $glob"; # No `spawn' as we could get: @@ -345,8 +459,8 @@ while (@distrouse || keys(%child)) { spawn "cp -p $srcrpm $builddir/$srcrpmbasename"; my $rpmbuildlocal=$rpmbuild.q{ --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm"}; - $rpmbuildlocal="orphanripper $rpmbuildlocal" if $cvsrepo && $cvsrepo eq "glibc"; - mockrun $rpmbuildlocal." --rebuild --with testsuite".($parallel<2 ? "" : " --with parallel")." $srcrpmbasename"; + $rpmbuildlocal="$orphanripper $rpmbuildlocal" if $cvsrepo && $cvsrepo eq "glibc"; + mockrun $rpmbuildlocal." --rebuild --with testsuite $srcrpmbasename"; } my $baretestsuite; @@ -364,11 +478,8 @@ while (@distrouse || keys(%child)) { } if ($component=~/^archer-/) { - if (-d $archermaster) { - spawn "cp -a $archermaster $builddir/$component; cd $builddir/$component; git pull" - } else { - spawn "cd $builddir; git clone git://sourceware.org/git/archer.git; mv -f archer $component"; - } + spawn "git clone ".(!-d $archermaster ? "" : "--reference $archermaster")." git://sourceware.org/git/archer.git $builddir/$component"; + spawn "cd $builddir/$component; git fetch"; spawn "cd $builddir/$component; git checkout -b $component origin/$component; [ \"`git status`\" = \"# On branch $component\nnothing to commit (working directory clean)\" ]"; $baretestsuite="$builddir/$component"; } @@ -385,30 +496,66 @@ while (@distrouse || keys(%child)) { my $R=$1; my $fileabs=$file; $fileabs=$ENV{"PWD"}."/$fileabs" if $fileabs!~m{^/}; - spawn "cd $baretestsuite; patch -${R}p".($component=~/binutils/ ? "0" : "1")." <$fileabs"; + spawn "cd $baretestsuite; patch -${R}p1 <$fileabs"; } else { -f $target or $file=~m{/testsuite/} or die "File $file does not exist at $target"; spawn "rm -f $target; cp -p $file $target"; } } - my $errs1="errs1"; - $errs1.=" --target=$target" if $target; - $errs1.=" $configure" if $configure; + my $errs12="errs12"; + $errs12.=" -s" if $strip; + $errs12.=" --target=$target" if $target; + $errs12.=" $options" if $options; + $errs12.=" $configure" if $configure; if ($component eq "binutilscvs") { - mockrun "cd $baretestsuite; $errs1; errs2; ulimit -c unlimited; orphanripper make -k check || :; mkdir $out; ".q{for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log};do ln $file}." $out/binutils-$distro-".q{$(basename $file) || :; done;}; + mockrun "cd $baretestsuite; $errs12; ulimit -c unlimited; $orphanripper make -k check || :; ".q{for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log};do ln $file}." $out/binutils-$distro-".q{$(basename $file) || :; done;}; } else { + if ($valgrind) { + # FIXME + do { unlink $_ or warn "$_: $!"; } for "$baretestsuite/gdb/testsuite/gdb.base/break-interp.exp"; + } my @check=($distro=~/-x86_64/ ? qw(-m64 -m32) : -m32); @check=map("check//unix/$_",@check); @check=map({($_,"$_/-fPIE/-pie");} @check) if $gdbcvspie; - # for i in ".join(" ",@check).";do orphanripper make -k \$i || :;done - mockrun "cd $baretestsuite; $errs1; errs2; cd gdb; ulimit -c unlimited; orphanripper make -k ".join(" ",@check)." || :; mkdir $out; ".q{for t in sum log;do for file in testsuite*/gdb.$t;do suffix="${file#testsuite.unix.}"; suffix="${suffix%/gdb.$t}"; ln $file}." $out/gdb".q{$suffix.$t || :; done; done;}; + my %flags=("CC_FOR_TARGET" =>"gcc", + "CXX_FOR_TARGET" =>"g++", + "GO_FOR_TARGET" =>"gccgo", + "GO_LD_FOR_TARGET"=>"gccgo", + ); + # for i in ".join(" ",@check).";do $orphanripper make -k \$i || :;done + sub runtestcc($) + { + my($q0)=@_; + (my $q1=$q0)=~s/ /\\ /g; + (my $q2=$q1)=~s/ /\\ /g; + return ' RUNTESTFLAGS="'.join(' ',map($_.'='.$flags{$_}.'\ '.$q1,keys(%flags))).' GNATMAKE_FOR_TARGET=gnatmake\ --GCC=gcc\\ '.$q2.'"'; + } + mockrun "cd $baretestsuite;" + .(!$valgrind?"":' HAMMOCK_VALGRIND=1') + ." $errs12" + .(!$valgrind?"":' --without-python') # FIXME: Fix valgrind --suppressions + .(!$bfd32?"":' --disable-64-bit-bfd') + ."; cd gdb; ulimit -c unlimited; " + .(!$gdbserver?"":'DEJAGNU=$HOME/src/runtest-gdbserver/site.exp ') + .(!$valgrind?"":'DEJAGNU=$HOME/src/runtest-valgrind/site.exp ') + ."$orphanripper make -k ".join(" ",@check) + # Ensure serial run if FORCE_PARALLEL=1 is not present + ." RUNTESTFLAGS=DUMMY=dummy" + .(!$gdbserver?"":' RUNTESTFLAGS=--target_board=native-gdbserver') + .(!$valgrind?"":' RUNTESTFLAGS=--target_board=valgrind') + # Missing GNATMAKE_FOR_TARGET! + .(!$gdbindex?"":' RUNTESTFLAGS="'.join(' ',map($_.'=/bin/sh\ $PWD/cc-with-index.sh\ '.$flags{$_},keys(%flags))).'"') + .(!$dwarf?"":runtestcc "-gdwarf-$dwarf".(!defined $debug_types_section?"":'\ '.($debug_types_section?"-fdebug-types-section":"-fno-debug-types-section"))." -g0") + .(!$stabs?"":runtestcc(($stabs==1?"-gstabs":"-gstabs+")." -g0")) + .(!$parallel?"":' FORCE_PARALLEL=1') + ." || :; ".q{for t in sum log;do for file in testsuite*/gdb.$t;do suffix="${file#testsuite.unix.}"; suffix="${suffix%/gdb.$t}"; ln $file}." $out/gdb".q{$suffix.$t || :; done; done;}; } # gdbunpack does: # perl -i -pe 's{\Q'"$HOME"'\E/.*?/build/[^/]*/}{}g' "$base"/* my $HOME=$ENV{"HOME"}; - for my $file (<$out/*>) { + for my $file (glob("$out/*.sum"),glob("$out/*.log")) { subst sub { s{\Q$HOME\E/.*?/build/[^/]*/}{}g; },$file; } } else { @@ -426,7 +573,14 @@ while (@distrouse || keys(%child)) { subst sub { s{^.*?\n($testinlog[0]\n.*\n$testinlog[1]\n).*$}{$1}s; },$log,$out; } elsif ($cvsbasedir || $srcrpm) { # Applies both to gdb and binutils. - spawn "gdbunpack $log"; + spawn "mv $out $out.x; gdbunpack $log; mv $out.x/* $out/; rmdir $out.x"; + } + + if ($valgrind) { + for my $from (glob "$out/*.log") { + (my $to=$from).="filt"; + spawn q{sed -n 's/^==[0-9]*== \([A-Z]\)/\1/p' <}.$from.q{|grep -v '^\(Conditional jump \|Invalid read \|Use of uninitialised value \|Syscall param .* uninitialised byte\)' >}.$to; + } } my $resultout="$resultdir/$id/$distrodirbase"; @@ -437,10 +591,10 @@ while (@distrouse || keys(%child)) { (my $base=$fname)=~s{^.*/}{}; my $d="$resultout/$base"; warn "+ link $fname $d\n"; - link $fname,$d or warn $!; + ln $fname,$d; } - exit 0 if $parallel>1; + exit 0 if $parallel; } print STDERR "waiting for ".scalar(keys(%child))." children, ".scalar(@distrouse)." distros to go...\n";