Skip to content

Commit

Permalink
update to match to new FIPS test build name
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com>
  • Loading branch information
llxia committed Jul 19, 2024
1 parent 18f03d7 commit 6faddd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-result-summary-client/src/utils/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const order = (a, b) => {
};
export const getInfoFromBuildName = (buildName) => {
const regex =
/^Test_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips|_fips140_2|_fips140_3_\d*|_criu)?)(_.+)?$/i;
/^Test_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips|_fips140_2|_fips140_3_openjceplusfips|_criu)?)(_.+)?$/i;
const tokens = buildName.match(regex);
if (Array.isArray(tokens) && tokens.length > 5) {
const [_, jdkVersion, jdkImpl, level, group, platform] = tokens;
Expand Down

0 comments on commit 6faddd5

Please sign in to comment.