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

like the Ghidra environment.
This commit is contained in:
Ryan Kurtz 2019-09-17 09:23:11 -04:00
parent 1d949be79d
commit f090280602

View File

@ -286,12 +286,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', // prvent 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',