aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/stubs/stringprintf_unittest.cc
diff options
context:
space:
mode:
authorGravatar xiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-02-26 17:49:03 +0000
committerGravatar xiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2013-02-26 17:49:03 +0000
commita36f1b43e738a7f5e40ab11b621803d684c3d65a (patch)
tree84477aee857e87aa1dfaf06db25f331e3f5639bc /src/google/protobuf/stubs/stringprintf_unittest.cc
parent7f372559cc31f15e8c30694ee7329bc0082454fe (diff)
Exclude a failing test in MingW build.
Diffstat (limited to 'src/google/protobuf/stubs/stringprintf_unittest.cc')
-rw-r--r--src/google/protobuf/stubs/stringprintf_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/google/protobuf/stubs/stringprintf_unittest.cc b/src/google/protobuf/stubs/stringprintf_unittest.cc
index a78a2027..de5ce59f 100644
--- a/src/google/protobuf/stubs/stringprintf_unittest.cc
+++ b/src/google/protobuf/stubs/stringprintf_unittest.cc
@@ -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
}