Skip to content

Commit ffbdfff

Browse files
committedMay 9, 2024
8331999: BasicDirectoryModel/LoaderThreadCount.java frequently fails on Windows in CI
Introduce tolerance factor: count > loaderCount.size() / 2 Fail the test only if the number of snapshots with more than 2 file loader threads is greater than half of the number of valid snapshots. Reviewed-by: prr, honkar
1 parent c7d98df commit ffbdfff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/jdk/javax/swing/plaf/basic/BasicDirectoryModel/LoaderThreadCount.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private static void runTest(final long timeStart) throws Throwable {
164164
System.out.println(" = 1: " + ones);
165165
System.out.println(" = 2: " + twos);
166166
System.out.println(" > 2: " + count);
167-
if (count > 0) {
167+
if (count > loaderCount.size() / 2) {
168168
throw new RuntimeException("Detected " + count + " snapshots "
169169
+ "with several loading threads");
170170
}

7 commit comments

Comments
 (7)

openjdk-notifier[bot] commented on May 9, 2024

@openjdk-notifier[bot]

luchenlin commented on Jun 14, 2024

@luchenlin

/backport jdk21u-dev

luchenlin commented on Jun 14, 2024

@luchenlin

/backport jdk17u-dev

luchenlin commented on Jun 14, 2024

@luchenlin

/backport jdk11u-dev

openjdk[bot] commented on Jun 14, 2024

@openjdk[bot]

@luchenlin Could not automatically backport ffbdfffb to openjdk/jdk21u-dev due to conflicts in the following files:

  • test/jdk/javax/swing/plaf/basic/BasicDirectoryModel/LoaderThreadCount.java

Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk21u-dev. Note: these commands are just some suggestions and you can use other equivalent commands you know.

# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk21u-dev.git master:master

# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b backport-luchenlin-ffbdfffb-master

# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git ffbdfffbc702253f32fa45dc1855b663c72074a6

# Backport the commit
$ git cherry-pick --no-commit ffbdfffbc702253f32fa45dc1855b663c72074a6
# Resolve conflicts now

# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport ffbdfffbc702253f32fa45dc1855b663c72074a6'

Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk21u-dev with the title Backport ffbdfffbc702253f32fa45dc1855b663c72074a6.

Below you can find a suggestion for the pull request body:

Hi all,

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

The commit being backported was authored by Alexey Ivanov on 9 May 2024 and was reviewed by Phil Race and Harshitha Onkar.

Thanks!

openjdk[bot] commented on Jun 14, 2024

@openjdk[bot]

@luchenlin Could not automatically backport ffbdfffb to openjdk/jdk17u-dev due to conflicts in the following files:

  • test/jdk/javax/swing/plaf/basic/BasicDirectoryModel/LoaderThreadCount.java

Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk17u-dev. Note: these commands are just some suggestions and you can use other equivalent commands you know.

# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk17u-dev.git master:master

# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b backport-luchenlin-ffbdfffb-master

# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git ffbdfffbc702253f32fa45dc1855b663c72074a6

# Backport the commit
$ git cherry-pick --no-commit ffbdfffbc702253f32fa45dc1855b663c72074a6
# Resolve conflicts now

# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport ffbdfffbc702253f32fa45dc1855b663c72074a6'

Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk17u-dev with the title Backport ffbdfffbc702253f32fa45dc1855b663c72074a6.

Below you can find a suggestion for the pull request body:

Hi all,

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

The commit being backported was authored by Alexey Ivanov on 9 May 2024 and was reviewed by Phil Race and Harshitha Onkar.

Thanks!

openjdk[bot] commented on Jun 14, 2024

@openjdk[bot]

@luchenlin Could not automatically backport ffbdfffb to openjdk/jdk11u-dev due to conflicts in the following files:

  • test/jdk/javax/swing/plaf/basic/BasicDirectoryModel/LoaderThreadCount.java

Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk11u-dev. Note: these commands are just some suggestions and you can use other equivalent commands you know.

# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk11u-dev.git master:master

# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b backport-luchenlin-ffbdfffb-master

# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git ffbdfffbc702253f32fa45dc1855b663c72074a6

# Backport the commit
$ git cherry-pick --no-commit ffbdfffbc702253f32fa45dc1855b663c72074a6
# Resolve conflicts now

# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport ffbdfffbc702253f32fa45dc1855b663c72074a6'

Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk11u-dev with the title Backport ffbdfffbc702253f32fa45dc1855b663c72074a6.

Below you can find a suggestion for the pull request body:

Hi all,

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

The commit being backported was authored by Alexey Ivanov on 9 May 2024 and was reviewed by Phil Race and Harshitha Onkar.

Thanks!

Please sign in to comment.