Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/DefaultFileSystem.cpp

Issue 10421060: Make sure to work properly with Unicode paths on Windows (Closed)
Patch Set: Created May 14, 2013, 1:38 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/DefaultFileSystem.cpp ('K') | « src/DefaultFileSystem.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/DefaultFileSystem.cpp
===================================================================
--- a/test/DefaultFileSystem.cpp
+++ b/test/DefaultFileSystem.cpp
@@ -17,17 +17,17 @@
#include <AdblockPlus.h>
#include <gtest/gtest.h>
#include "../src/Utils.h"
namespace
{
- const std::string testPath = "libadblockplus-test-file";
+ const std::string testPath = "libadblockplus-t\xc3\xa4st-file";
void WriteString(AdblockPlus::FileSystem& fileSystem,
const std::string& content)
{
std::tr1::shared_ptr<std::stringstream> input(new std::stringstream);
*input << content;
fileSystem.Write(testPath, input);
}
« src/DefaultFileSystem.cpp ('K') | « src/DefaultFileSystem.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld