Skip to content

Commit

Permalink
Merge tag 'jdk8u442-b03'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Nazarkin committed Nov 28, 2024
2 parents 87ad807 + ed3d731 commit fa5b28b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,16 @@ jobs:
- jdk/tier1
- langtools/tier1
- hotspot/tier1
- jdk/security_infra
include:
- test: jdk/tier1
suites: jdk_tier1
- test: langtools/tier1
suites: langtools_tier1
- test: hotspot/tier1
suites: hotspot_tier1
- test: jdk/security_infra
suites: jdk_security_infra

env:
JDK_VERSION: "${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MAJOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MINOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MICRO_VERSION }}"
Expand Down Expand Up @@ -559,13 +562,16 @@ jobs:
- jdk/tier1
- langtools/tier1
- hotspot/tier1
- jdk/security_infra
include:
- test: jdk/tier1
suites: jdk_tier1
- test: langtools/tier1
suites: langtools_tier1
- test: hotspot/tier1
suites: hotspot_tier1
- test: jdk/security_infra
suites: jdk_security_infra

# Reduced 32-bit build uses the same boot JDK as 64-bit build
env:
Expand Down Expand Up @@ -1034,13 +1040,16 @@ jobs:
- jdk/tier1
- langtools/tier1
- hotspot/tier1
- jdk/security_infra
include:
- test: jdk/tier1
suites: jdk_tier1
- test: langtools/tier1
suites: langtools_tier1
- test: hotspot/tier1
suites: hotspot_tier1
- test: jdk/security_infra
suites: jdk_security_infra

env:
JDK_VERSION: "${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MAJOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MINOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MICRO_VERSION }}"
Expand Down Expand Up @@ -1192,13 +1201,16 @@ jobs:
- jdk/tier1
- langtools/tier1
- hotspot/tier1
- jdk/security_infra
include:
- test: jdk/tier1
suites: jdk_tier1
- test: langtools/tier1
suites: langtools_tier1
- test: hotspot/tier1
suites: hotspot_tier1
- test: jdk/security_infra
suites: jdk_security_infra

env:
JDK_VERSION: "${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MAJOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MINOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MICRO_VERSION }}"
Expand Down Expand Up @@ -1448,13 +1460,16 @@ jobs:
- jdk/tier1
- langtools/tier1
- hotspot/tier1
- jdk/security_infra
include:
- test: jdk/tier1
suites: jdk_tier1
- test: langtools/tier1
suites: langtools_tier1
- test: hotspot/tier1
suites: hotspot_tier1
- test: jdk/security_infra
suites: jdk_security_infra

env:
JDK_VERSION: "${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MAJOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MINOR_VERSION }}.${{ fromJson(needs.prerequisites.outputs.dependencies).JDK_MICRO_VERSION }}"
Expand Down
4 changes: 2 additions & 2 deletions jdk/src/windows/native/sun/windows/awt_Component.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2017, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2018, Oracle and/or its affiliates. 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 Down Expand Up @@ -3840,7 +3840,7 @@ void AwtComponent::OpenCandidateWindow(int x, int y)
{
UINT bits = 1;
POINT p = {0, 0}; // upper left corner of the client area
HWND hWnd = GetHWnd();
HWND hWnd = ImmGetHWnd();
if (!::IsWindowVisible(hWnd)) {
return;
}
Expand Down
3 changes: 1 addition & 2 deletions jdk/test/TEST.groups
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ jdk_tier1 = \
:jdk_lang \
:jdk_util \
:jdk_math \
:jdk_jdi \
:jdk_security_infra
:jdk_jdi

jdk_tier2 = \
:jdk_io \
Expand Down

0 comments on commit fa5b28b

Please sign in to comment.