[Runtime testing] Store GTest revision in root gradle.properties

This commit is contained in:
Ilya Matveev
2020-10-09 13:27:28 +07:00
committed by Ilya Matveev
parent 0e17f84750
commit 091903c6a2
2 changed files with 7 additions and 4 deletions
+6
View File
@@ -29,6 +29,12 @@ konanVersion=1.4.30
# A version of Xcode required to build the Kotlin/Native compiler.
xcodeMajorVersion=12
# A GTest revision used to test the runtime.
# The latest release GTest (1.10.0) doesn't properly register skipped tests in an XML-report.
# Therefore we use a fixed commit form the master branch where this problem is already fixed.
# https://github.com/google/googletest/commit/07f4869221012b16b7f9ee685d94856e1fc9f361
gtestRevision=07f4869221012b16b7f9ee685d94856e1fc9f361
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
org.gradle.workers.max=4
+1 -4
View File
@@ -12,10 +12,7 @@ plugins {
}
googletest {
// The latest release GTest (1.10.0) doesn't properly register skipped tests in an XML-report.
// Therefore we use a fixed commit form the master branch where this problem is already fixed.
// https://github.com/google/googletest/commit/07f4869221012b16b7f9ee685d94856e1fc9f361
revision = "07f4869221012b16b7f9ee685d94856e1fc9f361"
revision = project.property("gtestRevision") as String
refresh = project.hasProperty("refresh-gtest")
}