Disable tests that depend on tensorflow::Subprocess

This class is not implemented for windows.

PiperOrigin-RevId: 290646487
Change-Id: Ie903fc48411a1fbe946bae0da3eb285c5dce6f9e
This commit is contained in:
Gunhan Gulsoy 2020-01-20 13:54:18 -08:00 committed by TensorFlower Gardener
parent 20b2863cee
commit 165f70c481
3 changed files with 20 additions and 1 deletions
tensorflow/core
distributed_runtime
platform

View File

@ -111,6 +111,9 @@ tf_cc_test(
name = "cluster_function_library_runtime_test",
srcs = ["cluster_function_library_runtime_test.cc"],
linkstatic = tf_kernel_tests_linkstatic(),
tags = [
"no_windows",
],
deps = [
":worker_session",
"//tensorflow/core:framework_internal",

View File

@ -467,6 +467,9 @@ tf_cc_test(
name = "grpc_tensor_coding_test",
size = "small",
srcs = ["grpc_tensor_coding_test.cc"],
tags = [
"no_windows",
],
deps = [
":grpc_tensor_coding",
":grpc_testlib",

View File

@ -856,7 +856,6 @@ tf_cc_tests(
"strcat_test.cc",
"stringpiece_test.cc",
"stringprintf_test.cc",
"subprocess_test.cc",
"vmodule_benchmark_test.cc",
],
create_named_test_suite = True,
@ -881,6 +880,20 @@ tf_cc_tests(
],
)
tf_cc_test(
name = "subprocess_test",
size = "small",
srcs = ["subprocess_test.cc"],
tags = [
"no_windows",
],
deps = [
":subprocess",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
)
tf_cc_test(
name = "platform_strings_test",
size = "small",