[gradle][test] disable version test

This commit is contained in:
Vasily Levchenko
2018-04-11 13:48:06 +03:00
committed by Vasily Levchenko
parent 07ae3144de
commit 86ec80a6a7
@@ -274,20 +274,6 @@ class IncrementalSpecification extends BaseKonanSpecification {
recompilationAndInteropProcessingHappened(*results)
}
def 'konan version change should cause recompilation and interop reprocessing'() {
when:
def project = KonanProject.createWithInterop(projectDirectory, ArtifactType.LIBRARY) { KonanProject it ->
it.propertiesFile.append("konan.version=0.3\n")
}
def results = buildTwice(project) { KonanProject it ->
def newText = it.propertiesFile.text.replace('konan.version=0.3', 'konan.version=0.4')
it.propertiesFile.write(newText)
}
then:
recompilationAndInteropProcessingHappened(*results)
}
def 'Common source change should cause recompilation'() {
when:
File commonSource