On Mon, 21 Nov 2022 22:55:40 GMT, Daniel D. Daugherty <dcu...@openjdk.org> wrote:
> Misc stress testing related fixes: > > [JDK-8295424](https://bugs.openjdk.org/browse/JDK-8295424) adjust timeout for > another JLI GetObjectSizeIntrinsicsTest.java subtest > [JDK-8297367](https://bugs.openjdk.org/browse/JDK-8297367) disable > TestRedirectLinks.java in slowdebug mode > [JDK-8297369](https://bugs.openjdk.org/browse/JDK-8297369) disable Fuzz.java > in slowdebug mode test/jdk/jdk/internal/vm/Continuation/Fuzz.java line 90: > 88: > 89: public static void main(String[] args) { > 90: if (Platform.isSlowDebugBuild() && Platform.isOSX() && > Platform.isAArch64()) { I don't like the idea of skipping the unstable test using SkippedException. Wouldn't be better to add problemlist for slowdebug? So anyone could easy identify test bugs in slowdebug mode. Really it would be better to support bits configurations in standard problem lists like os/arch but it is a separate issue. ------------- PR: https://git.openjdk.org/jdk/pull/11278