Skip to content
Snippets Groups Projects

NSHM Unit tests

Compare and Show latest version
4 files
+ 135
34
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 11
2
@@ -82,7 +82,6 @@ task nshms() {
task testAlaska2007(type: Test) {
description = "Test Alaska 2007 NSHM"
group = "verification"
println("Memory: " + xmx)
doFirst {
downloadNshm(findNshm("nshm-alaska", 2007))
@@ -92,6 +91,8 @@ task testAlaska2007(type: Test) {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
@@ -116,6 +117,8 @@ task testAlaska2023(type: Test) {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
@@ -140,9 +143,11 @@ task testConus2018(type: Test) {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
"-Xms${xmx}",
"-Xmx${xmx}",
)
@@ -164,6 +169,8 @@ task testConus2023(type: Test) {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
@@ -188,6 +195,8 @@ task testHawaii2021(type: Test) {
exceptionFormat "full"
}
systemProperties(System.getProperties())
useJUnitPlatform()
jvmArgs(
"-Xms2g",
Loading