File tree 3 files changed +22
-1
lines changed
3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -539,7 +539,11 @@ def runTest( ) {
539
539
540
540
TARGET = " ${ params.TARGET} " ;
541
541
if (TARGET . contains(' custom' ) && CUSTOM_TARGET != ' ' ) {
542
- CUSTOM_OPTION = " ${ TARGET.toUpperCase()} _TARGET='${ CUSTOM_TARGET} '"
542
+ if (TARGET == ' system_custom' ) {
543
+ env. SYSTEM_CUSTOM_TARGET = CUSTOM_TARGET
544
+ } else {
545
+ CUSTOM_OPTION = " ${ TARGET.toUpperCase()} _TARGET='${ CUSTOM_TARGET} '"
546
+ }
543
547
}
544
548
if (! TARGET . startsWith(' -f' )) {
545
549
TARGET = " _${ params.TARGET} "
Original file line number Diff line number Diff line change 17
17
<group >system</group >
18
18
</groups >
19
19
</test >
20
+ <test >
21
+ <testCaseName >system_custom</testCaseName >
22
+ <variations >
23
+ <variation >NoOptions</variation >
24
+ </variations >
25
+ <command >$(SYSTEMTEST_CMD_TEMPLATE) $(CUSTOM_TARGET);\
26
+ $(TEST_STATUS)</command >
27
+ <levels >
28
+ <level >special</level >
29
+ </levels >
30
+ <groups >
31
+ <group >system</group >
32
+ </groups >
33
+ </test >
20
34
<test >
21
35
<testCaseName >MiniMix_5m</testCaseName >
22
36
<variations >
Original file line number Diff line number Diff line change @@ -53,3 +53,6 @@ perl $(SYSTEMTEST_RESROOT)$(D)stf$(D)stf.core$(D)scripts$(D)stf.pl \
53
53
-java-args=$(SQ )$(JVM_OPTIONS )$(SQ ) \
54
54
-results-root=$(REPORTDIR )
55
55
endef
56
+
57
+ # Default test to be run for system_custom in regular system test builds
58
+ CUSTOM_TARGET ?= -test=ClassloadingLoadTest
You can’t perform that action at this time.
0 commit comments