Skip to content

Commit

Permalink
8325876: crashes in docker container tests on Linuxppc64le Power8 mac…
Browse files Browse the repository at this point in the history
…hines

Backport-of: ba8db1f6d737bf369f1795d03327217186c0cf64
  • Loading branch information
MBaesken committed Feb 26, 2024
1 parent 69aa4ab commit 55f9bcf
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2019, 2024, 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 @@ -63,6 +63,11 @@ public static String getBaseImageVersion() {
return version;
}

// Ubuntu 22.04 ppc started to crash in libz inflateReset on Power8 based host
// those recent Ubuntu versions only work on Power9+
if (Platform.isPPC()) {
return "20.04";
}
return "latest";
}
}

1 comment on commit 55f9bcf

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

Please sign in to comment.