llvm-project/lldb/unittests/Core/StructuredDataTest.cpp
Pavel Labath 2a66884f78 Fix TestBreakpointSerialization on windows
The test exposed a bug in the StructuredData Serialization code, which did not
escape the backslash properly. This manifested itself as windows breakpoint
serialization roundtrip test not succeeding (as windows paths included
backslashes).

llvm-svn: 282167
2016-09-22 15:26:43 +00:00

33 lines
929 B
C++

//===-- StructuredDataTest.cpp ----------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "gtest/gtest.h"
#include "lldb/Core/StructuredData.h"
#include "lldb/Core/StreamString.h"
#include "llvm/Support/MachO.h"
using namespace lldb;
using namespace lldb_private;
TEST(StructuredDataTest, StringDump) {
std::pair<llvm::StringRef, llvm::StringRef> TestCases[] = {
{ R"(asdfg)", R"("asdfg")" },
{ R"(as"df)", R"("as\"df")" },
{ R"(as\df)", R"("as\\df")" },
};
for(auto P : TestCases) {
StreamString S;
const bool pretty_print = false;
StructuredData::String(P.first).Dump(S, pretty_print);
EXPECT_EQ(P.second, S.GetString());
}
}