Skip to content

Commit

Permalink
Add test for HotSpot using SyntheticGCWorkload
Browse files Browse the repository at this point in the history
The added tests showcase the same functionality using both HotSpot and OpenJ9 as
requested by adoptium#157.

Closes: adoptium#157
Signed-off-by: Andre Ha <[email protected]>
  • Loading branch information
AndreOikawa committed Sep 30, 2019
1 parent 0ea804d commit a1a5a40
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions functional/SyntheticGCWorkload/playlist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,48 @@
<impl>ibm</impl>
</impls>
</test>
<test>
<testCaseName>OpenJ9_SyntheticGCWorkload_simple</testCaseName>
<variations>
<variation>-Xmx1g -Xms1g -Xdump:none -Xgcpolicy:gencon -Xnocompactgc -Xgcthreads16</variation>
</variations>
<command>
cd $(TEST_RESROOT); \
$(JAVA_COMMAND) $(JVM_OPTIONS) -cp .:SyntheticGCWorkload.jar net.adoptopenjdk.casa.workload_sessions.Main config/config_10k_0.4.xml -n
</command>
<platformRequirements>arch.x86,bits.64,os.linux</platformRequirements>
<levels>
<level>extended</level>
</levels>
<groups>
<group>functional</group>
</groups>
<impls>
<impl>openj9</impl>
<impl>ibm</impl>
</impls>
</test>
<test>
<testCaseName>Hotspot_SyntheticGCWorkload_simple</testCaseName>
<variations>
<variation>-Xmx1g -Xms1g -XX:ParallelGCThreads=16 -XX:+UseConcMarkSweepGC</variation>
</variations>
<command>
cd $(TEST_RESROOT); \
$(JAVA_COMMAND) $(JVM_OPTIONS) -cp .:SyntheticGCWorkload.jar net.adoptopenjdk.casa.workload_sessions.Main config/config_10k_0.4.xml -n
</command>
<platformRequirements>arch.x86,bits.64,os.linux</platformRequirements>
<levels>
<level>extended</level>
</levels>
<groups>
<group>functional</group>
</groups>
<impls>
<impl>hotspot</impl>
</impls>
</test>

<test>
<testCaseName>SyntheticGCWorkload_concurrentSlackAuto_100k_J9</testCaseName>
<variations>
Expand Down

0 comments on commit a1a5a40

Please sign in to comment.