Reviewer needed - fix for IcedTea bug#637

Dr Andrew John Hughes ahughes at redhat.com
Thu Mar 3 16:48:30 PST 2011


On 17:08 Thu 03 Mar     , Pavel Tisnovsky wrote:
> Hi all,
> 
> I'd like to push following change to IcedTea6 HEAD. This change fixes
> the IcetTea6 bug #637:
> http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=637
> 
> How the fix works:
> 
> - after one regtest suite (hotspot, langtools or jdk) is finished, make
> check (using grep) if there are any test errors and/or failures.
> 
> - if the user runs only selected test suite (by 'make check-hotspot' for
> example), this test ensures that make will fail
> 
> - if the user runs all three test suites (by 'make check -k' where -k is
> mandatory), ALL THREE test suites are run, even if first or second one
> fail. File jtreg-summary.txt is always generated in this case, because
> the step for creating it is now included in new target
> 'finish-jtregcheck' and not in the 'common' target 'jtregcheck'.
> 
> hg diff generated against recent IcedTea6 HEAD is stored in attachment.
> 

The main issue I see is with finish-jtregcheck.  It has no
dependencies.  Presumably it needs to depend on
check-{hotspot,langtools,jdk}.  Why create a new target and
not use finish-jtregcheck?

> 
> Addition to Changelog:
> 
> 2011-03-03  Pavel Tisnovsky  <ptisnovs at redhat.com>
> 
>         * Makefile.am:
>         Added checking of JTreg results - if at least one
>         regression test failed, make exits with error code
> 
> 
> Cheers
> Pavel

> diff -r 0df8f7938769 Makefile.am
> --- a/Makefile.am	Thu Mar 03 15:32:46 2011 +0100
> +++ b/Makefile.am	Thu Mar 03 16:59:31 2011 +0100
> @@ -2069,6 +2069,7 @@
>  		$(ICEDTEA_JTREG_OPTIONS) \
>  		`pwd`/openjdk/hotspot/test \
>  	    | tee test/$@.log
> +	test -z `grep "^Error:\|^FAILED:" test/check-hotspot.log`
>  
>  check-langtools: stamps/jtreg.stamp
>  	mkdir -p test/langtools/JTwork test/langtools/JTreport
> @@ -2079,6 +2080,7 @@
>  		$(ICEDTEA_JTREG_OPTIONS) \
>  		`pwd`/openjdk/langtools/test \
>  	    | tee test/$@.log
> +	test -z `grep "^Error:\|^FAILED:" test/check-langtools.log`
>  
>  check-jdk: stamps/jtreg.stamp
>  	mkdir -p test/jdk/JTwork test/jdk/JTreport
> @@ -2095,6 +2097,7 @@
>  		$(ICEDTEA_JTREG_OPTIONS) \
>  		`pwd`/openjdk/jdk/test \
>  	    | tee test/$@.log
> +	test -z `grep "^Error:\|^FAILED:" test/check-jdk.log`
>  
>  clean-jtreg-reports:
>  	rm -rf test/hotspot test/langtools test/jdk
> @@ -2107,7 +2110,9 @@
>  jtreg_pids = ps x --no-headers -ww -o pid,ppid,args \
>  	| awk '$$2 == 1 && $$3 ~ /^$(subst /,\/,$(CURDIR)/$(sdkimg))/ {print $$1}'
>  
> -jtregcheck: jtreg check-hotspot check-langtools check-jdk
> +jtregcheck: jtreg check-hotspot check-langtools check-jdk finish-jtregcheck
> +
> +finish-jtregcheck:
>  	for i in hotspot langtools jdk; do \
>  	  echo "--------------- jtreg console summary for $$i ---------------"; \
>  	  egrep -v '^(Passed:|Directory|Re[a-z]+\ written\ to)' test/check-$$i.log; \


-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and IcedTea
http://www.gnu.org/software/classpath
http://icedtea.classpath.org
PGP Key: F5862A37 (https://keys.indymedia.org/)
Fingerprint = EA30 D855 D50F 90CD F54D  0698 0713 C3ED F586 2A37



More information about the distro-pkg-dev mailing list