Index: base/test/test_suite.cc |
diff --git a/base/test/test_suite.cc b/base/test/test_suite.cc |
index e67be8d1d6f40a202d0d44511aafac047b8b97a0..24af4e14c2e71efa001cee5374772d1a7c603741 100644 |
--- a/base/test/test_suite.cc |
+++ b/base/test/test_suite.cc |
@@ -78,7 +78,9 @@ TestSuite::TestSuite(int argc, char** argv) { |
base::EnableTerminationOnHeapCorruption(); |
CommandLine::Init(argc, argv); |
testing::InitGoogleTest(&argc, argv); |
-#if defined(TOOLKIT_USES_GTK) |
+#if defined(OS_LINUX) && defined(USE_AURA) |
+ setlocale(LC_ALL, ""); |
Paweł Hajdan Jr.
2011/12/09 11:27:55
Please add comment - why is it here?
|
+#elif defined(TOOLKIT_USES_GTK) |
gtk_init_check(&argc, &argv); |
#endif // defined(TOOLKIT_USES_GTK) |
// Don't add additional code to this constructor. Instead add it to |