WALA/com.ibm.wala.cast.js.rhino..../build.gradle

34 lines
845 B
Groovy

apply plugin: 'com.github.hauner.jarTest'
sourceSets.test {
java.srcDirs = ['harness-src']
resources.srcDirs = [project(':com.ibm.wala.cast.js.test.data').file('examples-src')]
}
dependencies {
testCompile(
'junit:junit:4.11',
project(':com.ibm.wala.cast'),
project(':com.ibm.wala.cast.js'),
project(':com.ibm.wala.cast.js.rhino'),
project(':com.ibm.wala.core'),
project(':com.ibm.wala.shrike'),
project(':com.ibm.wala.util'),
project(configuration: 'testArchives', path: ':com.ibm.wala.cast.js.test'),
project(configuration: 'testArchives', path: ':com.ibm.wala.cast.test'),
project(configuration: 'testArchives', path: ':com.ibm.wala.core.tests'),
)
}
test {
environment 'TRAVIS', 1
maxHeapSize = '800M'
}
task cleanTest(type: Delete) {
delete 'actual.dump'
delete 'expected.dump'
}
clean.dependsOn cleanTest