Commit ab8f2b0d authored by misterg's avatar misterg
Browse files

WIP, win testing

parent e66b6bc8
......@@ -116,24 +116,27 @@ cc_test(
#Verifies interaction of death tests and exceptions.
cc_test(
name = "gtest-death-test_ex_catch_test",
size = "small",
size = "medium",
srcs = ["gtest-death-test_ex_test.cc"],
copts = select({
"//:win": ["-DGTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
"//conditions:default": ["-fexceptions"],
}),
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=0"],
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
deps = ["//:gtest_ex"],
)
cc_test(
name = "gtest-death-test_ex_nocatch_test",
size = "small",
size = "medium",
srcs = ["gtest-death-test_ex_test.cc"],
copts = select({
"//:win": ["-DGTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
"//conditions:default": ["-fexceptions"],
}),
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=1"],
defines = ["GTEST_ENABLE_CATCH_EXCEPTIONS_=0"],
deps = ["//:gtest_ex"],
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment