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
7203f37f
Commit
7203f37f
authored
Feb 21, 2019
by
Gennadiy Civil
Browse files
Merge pull request #2137 from ngie-eign:clang-ignore-sign-conversion
PiperOrigin-RevId: 235012245
parents
1411d27a
fcf59ca7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
README.md
README.md
+1
-0
googletest/README.md
googletest/README.md
+1
-1
googletest/cmake/internal_utils.cmake
googletest/cmake/internal_utils.cmake
+1
-1
googletest/docs/advanced.md
googletest/docs/advanced.md
+5
-6
No files found.
README.md
View file @
7203f37f
...
...
@@ -56,6 +56,7 @@ Google test has been used on a variety of platforms:
*
MinGW
*
Windows Mobile
*
Symbian
*
PlatformIO
## Who Is Using Google Test? ##
...
...
googletest/README.md
View file @
7203f37f
...
...
@@ -252,7 +252,7 @@ command line. Generally, these macros are named like `GTEST_XYZ` and you define
them to either 1 or 0 to enable or disable a certain feature.
We list the most frequently used macros below. For a complete list, see file
[
include/gtest/internal/gtest-port.h
](
https://github.com/google/googletest/blob/master/include/gtest/internal/gtest-port.h
)
.
[
include/gtest/internal/gtest-port.h
](
https://github.com/google/googletest/blob/master/
googletest/
include/gtest/internal/gtest-port.h
)
.
### Multi-threaded Tests
...
...
googletest/cmake/internal_utils.cmake
View file @
7203f37f
...
...
@@ -78,7 +78,7 @@ macro(config_compiler_and_linker)
# http://stackoverflow.com/questions/3232669 explains the issue.
set
(
cxx_base_flags
"
${
cxx_base_flags
}
-wd4702"
)
elseif
(
CMAKE_CXX_COMPILER_ID STREQUAL
"Clang"
)
set
(
cxx_base_flags
"-Wall -Wshadow -Werror"
)
set
(
cxx_base_flags
"-Wall -Wshadow -Werror
-Wno-error=sign-conversion
"
)
set
(
cxx_exception_flags
"-fexceptions"
)
set
(
cxx_no_exception_flags
"-fno-exceptions"
)
elseif
(
CMAKE_COMPILER_IS_GNUCXX
)
...
...
googletest/docs/advanced.md
View file @
7203f37f
...
...
@@ -1198,7 +1198,7 @@ also supports per-test-suite set-up/tear-down. To use it:
1.
Outside your test fixture class (typically just below it), define those
member variables, optionally giving them initial values.
1.
In the same test fixture class, define a
`static void SetUpTestSuite()`
function (remember not to spell it as
**`Set
U
pTestSuite`**
with a small
`u`
!)
function (remember not to spell it as
**`Set
u
pTestSuite`**
with a small
`u`
!)
to set up the shared resources and a
`static void TearDownTestSuite()`
function to tear them down.
...
...
@@ -2430,7 +2430,7 @@ could generate this report:
"failures"
:
1
,
"errors"
:
0
,
"time"
:
"0.035s"
,
"timestamp"
:
"2011-10-31T18:52:42Z"
"timestamp"
:
"2011-10-31T18:52:42Z"
,
"name"
:
"AllTests"
,
"testsuites"
:
[
{
...
...
@@ -2447,11 +2447,11 @@ could generate this report:
"classname"
:
""
,
"failures"
:
[
{
"message"
:
"Value of: add(1, 1)
\
x
0A
Actual: 3
\
x
0A
Expected: 2"
,
"message"
:
"Value of: add(1, 1)
\
n
Actual: 3
\
n
Expected: 2"
,
"type"
:
""
},
{
"message"
:
"Value of: add(1, -1)
\
x
0A
Actual: 1
\
x
0A
Expected: 0"
,
"message"
:
"Value of: add(1, -1)
\
n
Actual: 1
\
n
Expected: 0"
,
"type"
:
""
}
]
...
...
@@ -2463,7 +2463,7 @@ could generate this report:
"classname"
:
""
}
]
}
}
,
{
"name"
:
"LogicTest"
,
"tests"
:
1
,
...
...
@@ -2517,4 +2517,3 @@ environment variable to `0`, or use the `--gtest_catch_exceptions=0` flag when
running the tests.
**Availability**
: Linux, Windows, Mac.
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