6842023: Improve test reliability, Increase timeout factor on jtreg tests, etc.
authorohair
Mon, 18 May 2009 10:36:38 -0700
changeset 1213fdbc48164a8b
parent 1212 97064d73976f
child 1214 c06d30bd8c69
6842023: Improve test reliability, Increase timeout factor on jtreg tests, etc.
Reviewed-by: tbell
make/jprt.properties
test/Makefile
test/java/lang/ThreadGroup/NullThreadName.java
test/java/util/ResourceBundle/RestrictedBundleTest.java
test/java/util/WeakHashMap/GCDuringIteration.java
     1.1 --- a/make/jprt.properties	Fri May 15 13:21:43 2009 -0700
     1.2 +++ b/make/jprt.properties	Mon May 18 10:36:38 2009 -0700
     1.3 @@ -53,19 +53,19 @@
     1.4  
     1.5  # Standard list of jprt test targets for this workspace
     1.6  jprt.test.targets=*-*-*-jvm98
     1.7 -jprt.regression.test.targets=  \
     1.8 -   *-*-*-java/lang,            \
     1.9 -   *-*-*-java/security,        \
    1.10 -   *-*-*-java/text,            \
    1.11 -   *-*-*-java/util
    1.12 +jprt.regression.test.targets=        \
    1.13 +   *-product-*-java/lang,            \
    1.14 +   *-product-*-java/security,        \
    1.15 +   *-product-*-java/text,            \
    1.16 +   *-product-*-java/util
    1.17  
    1.18  #jprt.regression.test.targets=   \
    1.19 -#   *-*-*-java/awt,       \
    1.20 -#   *-*-*-java/beans,     \
    1.21 -#   *-*-*-java/io,        \
    1.22 -#   *-*-*-java/net,       \
    1.23 -#   *-*-*-java/nio,       \
    1.24 -#   *-*-*-java/rmi,       \
    1.25 +#   *-product-*-java/awt,       \
    1.26 +#   *-product-*-java/beans,     \
    1.27 +#   *-product-*-java/io,        \
    1.28 +#   *-product-*-java/net,       \
    1.29 +#   *-product-*-java/nio,       \
    1.30 +#   *-product-*-java/rmi,       \
    1.31  
    1.32  # Directories needed to build
    1.33  jprt.bundle.exclude.src.dirs=build
     2.1 --- a/test/Makefile	Fri May 15 13:21:43 2009 -0700
     2.2 +++ b/test/Makefile	Mon May 18 10:36:38 2009 -0700
     2.3 @@ -189,6 +189,7 @@
     2.4            $(shell $(GETMIXEDPATH) "$(JTREG)")                                \
     2.5              -a -v:fail,error                                                 \
     2.6  	    -ignore:quiet                                                    \
     2.7 +	    -timeoutFactor:2                                                 \
     2.8              $(EXTRA_JTREG_OPTIONS)                                           \
     2.9              -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport    \
    2.10              -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork      \
     3.1 --- a/test/java/lang/ThreadGroup/NullThreadName.java	Fri May 15 13:21:43 2009 -0700
     3.2 +++ b/test/java/lang/ThreadGroup/NullThreadName.java	Mon May 18 10:36:38 2009 -0700
     3.3 @@ -24,6 +24,7 @@
     3.4  /*
     3.5   * @test
     3.6   * @bug 6576763
     3.7 + * @ignore until hotspot 6776144 bug is resolved
     3.8   * @summary (thread) Thread constructors throw undocumented NPE for null name
     3.9   */
    3.10  
     4.1 --- a/test/java/util/ResourceBundle/RestrictedBundleTest.java	Fri May 15 13:21:43 2009 -0700
     4.2 +++ b/test/java/util/ResourceBundle/RestrictedBundleTest.java	Mon May 18 10:36:38 2009 -0700
     4.3 @@ -23,6 +23,7 @@
     4.4  /**
     4.5   * @test
     4.6   * @bug 4126805
     4.7 + * @ignore until 6842022 is resolved
     4.8   * @run applet RestrictedBundleTest.html
     4.9   * @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2
    4.10   * build.  It appears that it was fixed by changes to the class-loading mechanism,
     5.1 --- a/test/java/util/WeakHashMap/GCDuringIteration.java	Fri May 15 13:21:43 2009 -0700
     5.2 +++ b/test/java/util/WeakHashMap/GCDuringIteration.java	Mon May 18 10:36:38 2009 -0700
     5.3 @@ -24,6 +24,7 @@
     5.4  /*
     5.5   * @test
     5.6   * @bug 6499848
     5.7 + * @ignore until 6842353 is resolved
     5.8   * @summary Check that iterators work properly in the presence of
     5.9   *          concurrent finalization and removal of elements.
    5.10   */