Skip to content

Commit 1716df6

Browse files
committed
Support fips140-3-strongly-enforced in TRSS Grid view
Signed-off-by: Lan Xia <[email protected]>
1 parent 0487ce6 commit 1716df6

File tree

1 file changed

+1
-1
lines changed
  • test-result-summary-client/src/utils

1 file changed

+1
-1
lines changed

test-result-summary-client/src/utils/Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const order = (a, b) => {
77
};
88
export const getInfoFromBuildName = (buildName) => {
99
const regex =
10-
/^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_openjceplus|_criu)?)(_.+)?$/i;
10+
/^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_fips140_3_openjceplusfips.fips140-3-strongly-enforced|_openjceplus|_criu)?)(_.+)?$/i;
1111
const tokens = buildName.match(regex);
1212
if (Array.isArray(tokens) && tokens.length > 5) {
1313
const [_, type, jdkVersion, jdkImpl, level, group, platform] = tokens;

0 commit comments

Comments
 (0)