-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from Intel-HLS/gp_jni_fix_test_updates
JNI fixes and test updates
Showing
8 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ compileTestJava { | |
} | ||
|
||
repositories { | ||
// maven { url uri('/home/gspowley/.m2/repository/')} | ||
mavenLocal() | ||
mavenCentral() | ||
maven { url "https://artifactory.broadinstitute.org/artifactory/libs-snapshot/" } | ||
|
@@ -85,6 +84,13 @@ test { | |
// propagate system properties to test JVM | ||
systemProperties = System.getProperties() | ||
|
||
if (project.hasProperty('debug')) { | ||
jvmArgs '-verbose:jni', '-Xcheck:jni', '-XX:+RestoreMXCSROnJNICalls' | ||
} | ||
else { | ||
jvmArgs '-Xcheck:jni', '-XX:+RestoreMXCSROnJNICalls' | ||
} | ||
|
||
testLogging { | ||
if (!System.env.CI.toString().toBoolean()) { | ||
events "passed", "skipped", "failed", "standardOut", "standardError" | ||
|
@@ -193,6 +199,10 @@ uploadArchives { | |
name = "Priya Vaidya" | ||
email = "[email protected]" | ||
} | ||
developer { | ||
name = "Ernesto Brau" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters