mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 05:21:29 +07:00
16 lines
519 B
Plaintext
16 lines
519 B
Plaintext
import static org.jetbrains.jps.idea.IdeaProjectLoader.guessHome
|
|
|
|
includeTargets << new File("${guessHome(this)}/build/scripts/common_tests.gant")
|
|
|
|
setProperty("testcases", ["com.intellij.AllTests"])
|
|
setProperty("cucumber_test_dirs", [["git4idea", "Idea", "$home/plugins/git4idea/test-features/git4idea", "git4idea"]])
|
|
|
|
def isMac = System.getProperty("os.name").toLowerCase().startsWith("mac")
|
|
def args = [
|
|
"-Xmx450m",
|
|
"-XX:MaxPermSize=430m",
|
|
]
|
|
if (isMac) args << "-d32";
|
|
|
|
setProperty("jvm_args", args)
|