Skip to content

Commit

Permalink
Support FIPS140-3 Strict profile (adoptium#5505)
Browse files Browse the repository at this point in the history
related:adoptium#5503

Signed-off-by: Lan Xia <[email protected]>
  • Loading branch information
llxia authored Aug 14, 2024
1 parent e1a32de commit 67c68a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildenv/jenkins/testJobTemplate
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,10 @@ ARCH_OS_LIST.each { ARCH_OS ->
sectionHeader('Additional test parameters if you want to append or replace options, or repeat the test for more than 1 iteration.')
sectionHeaderStyle(sectionHeaderHelpTextStyleCss)
}
choiceParam('TEST_FLAG', ['', 'JITAAS', 'AOT', 'FIPS', 'FIPS140_2', 'FIPS140_3_OpenJCEPlusFIPS'], "Optional. Only set for feature testing. (i.e., JITAAS, AOT, FIPS140_2, etc)")
choiceParam('TEST_FLAG', ['', 'JITAAS', 'AOT', 'FIPS', 'FIPS140_2', 'FIPS140_3_OpenJCEPlusFIPS', 'FIPS140_3_OpenJCEPlusFIPS.FIPS140-3'], "Optional. Only set for feature testing. (i.e., JITAAS, AOT, FIPS140_2, etc)")
stringParam('EXTRA_OPTIONS', "", "Use this to append options to the test command")
stringParam('JVM_OPTIONS', "", "Use this to replace the test original command line options")
stringParam('APPLICATION_OPTIONS', "", "Use this to append options to the test application")
stringParam('APPLICATION_OPTIONS', "", "Use this to append options to the test application")
stringParam('BUILD_IDENTIFIER', "", "build identifier")
stringParam('ITERATIONS',"1", '''Optional. Number of times to repeat execution of make target. <br/>
Use ITERATIONS with PARALLEL=None, run the same test(s) in a loop on one machine <br/>
Expand Down
2 changes: 2 additions & 0 deletions openjdk/openjdk.mk
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ endif
FEATURE_PROBLEM_LIST_FILE:=
ifneq (,$(findstring FIPS140_2, $(TEST_FLAG)))
FEATURE_PROBLEM_LIST_FILE:=-exclude:$(Q)$(JTREG_JDK_TEST_DIR)$(D)ProblemList-FIPS140_2.txt$(Q)
else ifneq (,$(findstring FIPS140_3_OpenJCEPlusFIPS.FIPS140-3, $(TEST_FLAG)))
FEATURE_PROBLEM_LIST_FILE:=-exclude:$(Q)$(JTREG_JDK_TEST_DIR)$(D)ProblemList-FIPS140_3_OpenJCEPlusFIPS.FIPS140-3.txt$(Q)
else ifneq (,$(findstring FIPS140_3_OpenJCEPlus, $(TEST_FLAG)))
FEATURE_PROBLEM_LIST_FILE:=-exclude:$(Q)$(JTREG_JDK_TEST_DIR)$(D)ProblemList-FIPS140_3_OpenJcePlus.txt$(Q)
endif
Expand Down

0 comments on commit 67c68a2

Please sign in to comment.