Googletest export

Internal Change

PiperOrigin-RevId: 347631521
This commit is contained in:
dmauro 2020-12-15 12:40:46 -05:00 committed by Derek Mauro
parent 18f8200e30
commit 4f6fa70870
2 changed files with 17 additions and 0 deletions

View File

@ -72,6 +72,10 @@ py_test(
":gmock_leak_test_",
":gmock_test_utils",
],
tags = [
"no_test_msvc2015",
"no_test_msvc2017",
],
)
cc_test(
@ -101,6 +105,10 @@ py_test(
],
python_version = "PY2",
deps = [":gmock_test_utils"],
tags = [
"no_test_msvc2015",
"no_test_msvc2017",
],
)
cc_test(

View File

@ -156,6 +156,7 @@ py_library(
name = "gtest_test_utils",
testonly = 1,
srcs = ["gtest_test_utils.py"],
imports = ["."],
)
cc_binary(
@ -551,6 +552,10 @@ py_test(
srcs = ["googletest-param-test-invalid-name1-test.py"],
data = [":googletest-param-test-invalid-name1-test_"],
deps = [":gtest_test_utils"],
tags = [
"no_test_msvc2015",
"no_test_msvc2017",
],
)
py_test(
@ -559,4 +564,8 @@ py_test(
srcs = ["googletest-param-test-invalid-name2-test.py"],
data = [":googletest-param-test-invalid-name2-test_"],
deps = [":gtest_test_utils"],
tags = [
"no_test_msvc2015",
"no_test_msvc2017",
],
)