Skip to content

Commit

Permalink
Ignore dev jtx when using custom target (#4161)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mesbah-Alam authored Nov 21, 2022
1 parent 0fc48b0 commit 213c621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jck/jtrunner/JavaTestRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ public static boolean generateJTB() throws Exception {
if (task == null || !task.equals("custom")) {
fileContent += "set jck.excludeList.customFiles \"" + initialJtxFullPath + " " + jtxFullPath + " " + jtxDevFullPath + " " + customJtx + " " + kflFullPath + " " + testFlagJtxFullPath + "\";\n";
} else {
fileContent += "set jck.excludeList.customFiles \"" + initialJtxFullPath + " " + jtxFullPath + " " + jtxDevFullPath + " " + customJtx + " " + kflFullPath + "\";\n";
fileContent += "set jck.excludeList.customFiles \"" + initialJtxFullPath + " " + jtxFullPath + " " + customJtx + " " + kflFullPath + "\";\n";
}

fileContent += "runTests" + ";\n";
Expand Down

0 comments on commit 213c621

Please sign in to comment.