[libcxx-commits] [PATCH] D71459: [libcxx] Fix include paths in fuzzing/partial_sort.pass.cpp
Mikhail Maltsev via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Dec 17 03:57:16 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG67ce7f51a50f: [libcxx] Fix include paths in fuzzing/partial_sort.pass.cpp (authored by miyuki).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D71459/new/
https://reviews.llvm.org/D71459
Files:
libcxx/test/libcxx/fuzzing/partial_sort.pass.cpp
Index: libcxx/test/libcxx/fuzzing/partial_sort.pass.cpp
===================================================================
--- libcxx/test/libcxx/fuzzing/partial_sort.pass.cpp
+++ libcxx/test/libcxx/fuzzing/partial_sort.pass.cpp
@@ -12,8 +12,8 @@
#include <cassert>
#include <cstring> // for strlen
-#include "../fuzzing/fuzzing.h"
-#include "../fuzzing/fuzzing.cpp"
+#include "../../../fuzzing/fuzzing.h"
+#include "../../../fuzzing/fuzzing.cpp"
const char* test_cases[] = {"", "s", "bac",
"bacasf"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D71459.234263.patch
Type: text/x-patch
Size: 537 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20191217/fe379f6e/attachment-0001.bin>
More information about the libcxx-commits
mailing list