[PATCH] D141944: [include-mapping] Fix gen_std.py test
Viktoriia Bakalova via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 18 05:08:14 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG0aaeb25525ec: [include-mapping] Fix gen_std.py test (authored by VitaNuo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141944/new/
https://reviews.llvm.org/D141944
Files:
clang/tools/include-mapping/test.py
Index: clang/tools/include-mapping/test.py
===================================================================
--- clang/tools/include-mapping/test.py
+++ clang/tools/include-mapping/test.py
@@ -24,11 +24,11 @@
actual = _ParseIndexPage(html)
expected = [
- ("abs", "abs.html", True),
- ("abs", "complex/abs.html", True),
- ("acos", "acos.html", False),
- ("acosh", "acosh.html", False),
- ("as_bytes", "as_bytes.html", False),
+ ("abs", "abs.html", 'int'),
+ ("abs", "complex/abs.html", 'std::complex'),
+ ("acos", "acos.html", None),
+ ("acosh", "acosh.html", None),
+ ("as_bytes", "as_bytes.html", None),
]
self.assertEqual(len(actual), len(expected))
for i in range(0, len(actual)):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141944.490113.patch
Type: text/x-patch
Size: 763 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230118/9d0c0244/attachment.bin>
More information about the cfe-commits
mailing list