Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8277353: java/security/MessageDigest/ThreadSafetyTest.java test times out #6626

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/jdk/java/security/MessageDigest/ThreadSafetyTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Azul Systems, Inc. All rights reserved.
* Copyright (c) 2020, 2021, Azul Systems, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand All @@ -23,9 +23,9 @@

/*
* @test
* @bug 8241960
* @bug 8241960 8277353
* @summary Confirm that java.security.MessageDigest is thread-safe after clone.
* @run main/othervm ThreadSafetyTest 5 4
* @run main ThreadSafetyTest 4 2
*/

import java.security.MessageDigest;
Expand Down Expand Up @@ -56,7 +56,7 @@ public static void main(String[] args) throws Exception {
duration = Integer.parseInt(args[1]);
}
int nProcessors = Runtime.getRuntime().availableProcessors();
int nTasks = nProcessors * threadsFactor;
int nTasks = Math.min(nProcessors, 4) * threadsFactor;

System.out.println("Testing with " + nTasks + " threads on " +
nProcessors + " processors for " + duration +
Expand Down