Skip to content

Commit

Permalink
Enabling daemon perf monitoring tests for common JDKs and GCs
Browse files Browse the repository at this point in the history
  • Loading branch information
eriwen committed Jun 3, 2016
1 parent bd65e24 commit 822dfd3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ package org.gradle.launcher.daemon
import org.gradle.launcher.daemon.fixtures.FullyQualifiedGarbageCollector

import static org.gradle.launcher.daemon.fixtures.JavaGarbageCollector.*
import static org.gradle.launcher.daemon.fixtures.JdkVendor.ORACLE
import static org.gradle.launcher.daemon.fixtures.JdkVendor.*

class DaemonPerformanceMonitoringCoverage {
static final def ALL_VERSIONS = [
// new FullyQualifiedGarbageCollector(vendor: IBM, version: "1.7", gc: IBM_ALL),
new FullyQualifiedGarbageCollector(vendor: IBM, version: "1.7", gc: IBM_ALL),
// In our testing, it seems that CMS and Serial collectors behaved the same, so omitting SERIAL here
new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.7", gc: ORACLE_PARALLEL_CMS),
// new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.7", gc: ORACLE_G1),
// new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.8", gc: ORACLE_PARALLEL_CMS),
new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.7", gc: ORACLE_G1),
new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.8", gc: ORACLE_PARALLEL_CMS),
new FullyQualifiedGarbageCollector(vendor: ORACLE, version: "1.8", gc: ORACLE_G1)
]
}

0 comments on commit 822dfd3

Please sign in to comment.