[clang-doc] Fix expected output in tests
authorDiego Astiazaran <diegoaat97@gmail.com>
Tue, 30 Jul 2019 00:07:34 +0000 (00:07 +0000)
committerDiego Astiazaran <diegoaat97@gmail.com>
Tue, 30 Jul 2019 00:07:34 +0000 (00:07 +0000)
Removes conversion of html paths in output. These will always be in
posix-style paths.

Differential Revision: https://reviews.llvm.org/D65425

llvm-svn: 367279

clang-tools-extra/unittests/clang-doc/HTMLGeneratorTest.cpp

index 454ab7d..9fe7542 100644 (file)
@@ -171,10 +171,6 @@ TEST(HTMLGeneratorTest, emitFunctionHTML) {
   ClangDocContext CDCtx = getClangDocContext();
   auto Err = G->generateDocForInfo(&I, Actual, CDCtx);
   assert(!Err);
-  SmallString<16> PathToFloat;
-  llvm::sys::path::native("path/to/float.html", PathToFloat);
-  SmallString<16> PathToInt;
-  llvm::sys::path::native("path/to/int.html", PathToInt);
   std::string Expected = R"raw(<!DOCTYPE html>
 <meta charset="utf-8"/>
 <title></title>
@@ -182,11 +178,9 @@ TEST(HTMLGeneratorTest, emitFunctionHTML) {
 <div>
   <h3>f</h3>
   <p>
-    <a href=")raw" + std::string(PathToFloat.str()) +
-                         R"raw(">float</a>
+    <a href="path/to/float.html">float</a>
      f(
-    <a href=")raw" + std::string(PathToInt.str()) +
-                         R"raw(">int</a>
+    <a href="path/to/int.html">int</a>
      P)
   </p>
   <p>Defined at line 10 of test.cpp</p>