Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
c75de0aa
Commit
c75de0aa
authored
Aug 08, 2017
by
misterg
Browse files
WIP, windows testing
parent
8815087c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
googletest/test/BUILD.bazel
googletest/test/BUILD.bazel
+9
-3
No files found.
googletest/test/BUILD.bazel
View file @
c75de0aa
...
...
@@ -118,7 +118,10 @@ cc_test(
name
=
"gtest-death-test_ex_catch_test"
,
size
=
"small"
,
srcs
=
[
"gtest-death-test_ex_test.cc"
],
copts
=
[
"-fexceptions"
],
copts
=
select
({
"//:win"
:
[],
"//conditions:default"
:
[
""
-
fexceptions
""
],
}),
defines
=
[
"GTEST_ENABLE_CATCH_EXCEPTIONS_=0"
],
deps
=
[
"//:gtest_ex"
],
)
...
...
@@ -127,7 +130,10 @@ cc_test(
name
=
"gtest-death-test_ex_nocatch_test"
,
size
=
"small"
,
srcs
=
[
"gtest-death-test_ex_test.cc"
],
copts
=
[
"-fexceptions"
],
defines
=
[
"GTEST_ENABLE_CATCH_EXCEPTIONS_=1"
],
copts
=
select
({
"//:win"
:
[],
"//conditions:default"
:
[
""
-
fexceptions
""
],
}),
defines
=
[
"GTEST_ENABLE_CATCH_EXCEPTIONS_=1"
],
deps
=
[
"//:gtest_ex"
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment