Skip to content

Commit

Permalink
jck: run riscv tests in headless mode (#5123)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams authored Mar 5, 2024
1 parent 20d1448 commit bb95679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jck/jtrunner/JavatestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ private static boolean generateJTB() throws Exception {
}

if ( testsRequireDisplay(tests) ) {
if (spec.contains("zos") || spec.contains("alpine-linux")) {
if (spec.contains("zos") || spec.contains("alpine-linux") || spec.contains("riscv")) {
fileContent += "set jck.env.testPlatform.headless Yes" + ";\n";
}
else {
Expand Down

0 comments on commit bb95679

Please sign in to comment.