Skip to content

Commit

Permalink
Reduce test load on 11,15 and 21
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcw committed Oct 18, 2024
1 parent a23a5e5 commit 96b8f56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions prov/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,23 @@ sourceSets {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11", "src/test/java"))
srcDir(files("src/test/jdk1.11"))
}
}

test15 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15", "src/test/java"))
srcDir(files("src/test/jdk1.15"))
}
}

test21 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15","src/test/jdk21", "src/test/java"))
srcDir(files("src/test/jdk21"))
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions tls/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ sourceSets {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11", "src/test/java"))
srcDir(files("src/test/jdk1.11"))
}
}

test15 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15", "src/test/java"))
srcDir(files("src/test/jdk1.15"))
}
}

test21 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15","src/test/jdk21", "src/test/java"))
srcDir(files("src/test/jdk21"))
}
}

Expand Down

0 comments on commit 96b8f56

Please sign in to comment.