Forcing UTF-8 and en_US on integration tests to make testing environment

look more
like the Ghidra environment.
This commit is contained in:
Ryan Kurtz
2019-09-19 11:53:14 -04:00
parent 48ea271f00
commit de5908f8a2
2 changed files with 6 additions and 6 deletions

View File

@@ -154,12 +154,12 @@ def initTestJVM(Task task, String rootDirName) {
'-XX:ParallelGCThreads=8',
'-XX:+UseParallelGC',
'-Djava.awt.headless=false',
// Dont' run this long winded analysis when testing (see DecompilerFunctionAnalyzer)
'-DDecompilerFunctionAnalyzer.enabled=false',
'-Djava.util.Arrays.useLegacyMergeSort=true',
'-DDecompilerFunctionAnalyzer.enabled=false', // prevent long-winded analysis when testing (see DecompilerFunctionAnalyzer)
'-Dfile.encoding=UTF8',
'-Duser.country=US',
'-Duser.language=en',
'-Djdk.attach.allowAttachSelf',
'-javaagent:' + jmockitPath,
'-javaagent:' + jmockitPath,
'-DLock.DEBUG=true',
'-Xdebug',
'-Xnoagent',

View File

@@ -286,7 +286,7 @@ def initTestJVM(Task task, String rootDirName) {
'-XX:ParallelGCThreads=8',
'-XX:+UseParallelGC',
'-Djava.awt.headless=false',
'-DDecompilerFunctionAnalyzer.enabled=false', // prvent long-winded analysis when testing (see DecompilerFunctionAnalyzer)
'-DDecompilerFunctionAnalyzer.enabled=false', // prevent long-winded analysis when testing (see DecompilerFunctionAnalyzer)
'-Dfile.encoding=UTF8',
'-Duser.country=US',
'-Duser.language=en',