Skip to content

Commit

Permalink
Merge pull request #571 from pshipton/musl
Browse files Browse the repository at this point in the history
Set OpenJDK test property vm.musl to false in OpenJ9PropsExt
  • Loading branch information
keithc-ca committed Aug 29, 2022
2 parents 59e12c7 + 5dcaf1b commit d01824a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions closed/test/jtreg-ext/requires/OpenJ9PropsExt.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* ===========================================================================
* (c) Copyright IBM Corp. 2019, 2020 All Rights Reserved
* (c) Copyright IBM Corp. 2019, 2022 All Rights Reserved
* ===========================================================================
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -36,8 +36,9 @@ public Map<String, String> call() {

Map<String, String> map = new HashMap<>();
try {
map.put("vm.graal.enabled", "false");
map.put("vm.bits", vmBits());
map.put("vm.graal.enabled", "false");
map.put("vm.musl", "false");
}
catch (Exception e) {
e.printStackTrace();
Expand Down

0 comments on commit d01824a

Please sign in to comment.