[Runtime testing] Store GTest revision in root gradle.properties
This commit is contained in:
committed by
Ilya Matveev
parent
0e17f84750
commit
091903c6a2
@@ -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
|
||||
|
||||
|
||||
@@ -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")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user