Skip to content

Commit

Permalink
8296190: TestMD5Intrinsics and TestMD5MultiBlockIntrinsics don't test…
Browse files Browse the repository at this point in the history
… the intrinsics

Reviewed-by: eastigeevich, phh, simonis
  • Loading branch information
Yi-Fan Tsai authored and Paul Hohensee committed Nov 3, 2022
1 parent b685fc2 commit f43bb9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class DigestSanityTestBase {
private static final int MSG_SIZE = 1024;
private static final int OFFSET = 0;
private static final int ITERATIONS = 10000;
private static final int WARMUP_ITERATIONS = 1;
private static final int WARMUP_ITERATIONS = WHITE_BOX.getIntxVMFlag("Tier4InvocationThreshold").intValue() + 50;
private static final String PROVIDER = "SUN";

private final BooleanSupplier predicate;
Expand Down

3 comments on commit f43bb9f

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin
Copy link
Member

@GoeLin GoeLin commented on f43bb9f Apr 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk17u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on f43bb9f Apr 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin the backport was successfully created on the branch backport-GoeLin-f43bb9fe in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit f43bb9fe from the openjdk/jdk repository.

The commit being backported was authored by Yi-Fan Tsai on 3 Nov 2022 and was reviewed by Evgeny Astigeevich, Paul Hohensee and Volker Simonis.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev.git backport-GoeLin-f43bb9fe:backport-GoeLin-f43bb9fe
$ git checkout backport-GoeLin-f43bb9fe
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev.git backport-GoeLin-f43bb9fe

Please sign in to comment.