changeset in /hg/icedtea6: 2008-10-18 Matthias Klose <doko at ubu...

doko at ubuntu.com doko at ubuntu.com
Sat Oct 18 07:17:05 PDT 2008


changeset cd0b1ad5b02c in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=cd0b1ad5b02c
description:
	2008-10-18  Matthias Klose  <doko at ubuntu.com>

	        * Makefile.am: Write a summary of the jtreg test results.

diffstat:

2 files changed, 20 insertions(+), 8 deletions(-)
ChangeLog   |    4 ++++
Makefile.am |   24 ++++++++++++++++--------

diffs (62 lines):

diff -r a4b3a6f8732c -r cd0b1ad5b02c ChangeLog
--- a/ChangeLog	Sat Oct 18 12:09:17 2008 +0200
+++ b/ChangeLog	Sat Oct 18 16:16:41 2008 +0200
@@ -1,3 +1,7 @@ 2008-10-18  Matthias Klose  <doko at ubuntu
+2008-10-18  Matthias Klose  <doko at ubuntu.com>
+
+	* Makefile.am: Write a summary of the jtreg test results.
+
 2008-10-18  Matthias Klose  <doko at ubuntu.com>
 
 	* Makefile.am (stamps/patch{,-fsg,-ecj}.stamp): Fail if patches don't
diff -r a4b3a6f8732c -r cd0b1ad5b02c Makefile.am
--- a/Makefile.am	Sat Oct 18 12:09:17 2008 +0200
+++ b/Makefile.am	Sat Oct 18 16:16:41 2008 +0200
@@ -1539,31 +1539,39 @@ clean-jtreg:
 	rm -f test/jtreg.jar
 	rm -f stamps/jtreg.stamp
 
-check-hotspot: jtreg
+check-hotspot: stamps/jtreg.stamp
 	mkdir -p test/hotspot/JTwork test/hotspot/JTreport
 	$(ICEDTEA_BOOT_DIR)/bin/java -jar test/jtreg.jar -v1 -a -ignore:quiet \
 		-w:test/hotspot/JTwork -r:test/hotspot/JTreport \
 		-jdk:`pwd`/$(BUILD_OUTPUT_DIR)/j2sdk-image \
-		`pwd`/openjdk/hotspot/test
-
-check-langtools: jtreg
+		`pwd`/openjdk/hotspot/test \
+	    | tee test/$@.log
+
+check-langtools: stamps/jtreg.stamp
 	mkdir -p test/langtools/JTwork test/langtools/JTreport
 	$(ICEDTEA_BOOT_DIR)/bin/java -jar test/jtreg.jar -v1 -a -ignore:quiet \
 		-w:test/langtools/JTwork -r:test/langtools/JTreport \
 		-jdk:`pwd`/$(BUILD_OUTPUT_DIR)/j2sdk-image \
-		`pwd`/openjdk/langtools/test
-
-check-jdk: jtreg
+		`pwd`/openjdk/langtools/test \
+	    | tee test/$@.log
+
+check-jdk: stamps/jtreg.stamp
 	mkdir -p test/jdk/JTwork test/jdk/JTreport
 	$(ICEDTEA_BOOT_DIR)/bin/java -jar test/jtreg.jar -v1 -a -ignore:quiet \
 		-w:test/jdk/JTwork -r:test/jdk/JTreport \
 		-jdk:`pwd`/$(BUILD_OUTPUT_DIR)/j2sdk-image \
-		`pwd`/openjdk/jdk/test
+		`pwd`/openjdk/jdk/test \
+	    | tee test/$@.log
 
 clean-jtreg-reports:
 	rm -rf test/hotspot test/langtools test/jdk
+	rm -f test/check-*.log test/jtreg-summary.log
 
 jtregcheck: jtreg check-hotspot check-langtools check-jdk
+	for i in hotspot langtools jdk; do \
+	  echo "--------------- jtreg console summary for $$i ---------------"; \
+	  egrep -v '^(Passed:|Directory)' test/check-$$i.log; \
+	done | tee test/jtreg-summary.log
 
 check-local: jtregcheck
 



More information about the distro-pkg-dev mailing list