Disable stacktrace tests on windows.

PiperOrigin-RevId: 299859416
Change-Id: Ic15d7befa9b5f785f75e3da1244cb283bf7e275a
This commit is contained in:
Gunhan Gulsoy 2020-03-09 09:29:17 -07:00 committed by TensorFlower Gardener
parent add27c7db6
commit 482bb0c70d

View File

@ -939,8 +939,6 @@ tf_cc_tests(
"port_test.cc",
"profile_utils/cpu_utils_test.cc",
"scanner_test.cc",
"stacktrace_handler_test.cc",
"stacktrace_test.cc",
"str_util_test.cc",
"strcat_test.cc",
"stringpiece_test.cc",
@ -969,6 +967,37 @@ tf_cc_tests(
],
)
tf_cc_test(
name = "stacktrace_test",
size = "small",
srcs = [
"stacktrace_test.cc",
],
tags = ["no_windows"],
deps = [
":logging",
":stacktrace",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
)
tf_cc_tests(
name = "stacktrace_handler_test",
size = "small",
srcs = [
"stacktrace_handler_test.cc",
],
tags = ["no_windows"],
deps = [
":logging",
":stacktrace",
":stacktrace_handler",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
],
)
tf_cc_test(
name = "subprocess_test",
size = "small",