Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
a36f1b43
Commit
a36f1b43
authored
Feb 26, 2013
by
xiaofeng@google.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exclude a failing test in MingW build.
parent
7f372559
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
README.txt
python/README.txt
+2
-1
stringprintf_unittest.cc
src/google/protobuf/stubs/stringprintf_unittest.cc
+2
-2
No files found.
python/README.txt
View file @
a36f1b43
...
...
@@ -43,8 +43,9 @@ Installation
$ protoc --version
4)
R
un the tests:
4)
Build and r
un the tests:
$ python setup.py build
$ python setup.py test
If some tests fail, this library may not work correctly on your
...
...
src/google/protobuf/stubs/stringprintf_unittest.cc
View file @
a36f1b43
...
...
@@ -54,8 +54,8 @@ TEST(StringPrintfTest, Empty) {
}
TEST
(
StringPrintfTest
,
Misc
)
{
// MSVC does not support $ format specifier.
#if !defined(_MSC_VER)
// MSVC
and mingw
does not support $ format specifier.
#if !defined(_MSC_VER)
&& !defined(__MINGW32__)
EXPECT_EQ
(
"123hello w"
,
StringPrintf
(
"%3$d%2$s %1$c"
,
'w'
,
"hello"
,
123
));
#endif // !_MSC_VER
}
...
...
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