[libcxx-commits] [libcxx] [libc++] Implements the new FTM header test generator. (PR #134542)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 14 08:34:07 PDT 2025
================
@@ -2296,24 +2374,205 @@ def version_header(self) -> str:
)
)
+ def header_ftm_data(self, header: str) -> Dict[Std, List[Dict[Ftm, FtmHeaderTest]]]:
----------------
ldionne wrote:
```suggestion
def test_data(self, header: str) -> Dict[Std, List[Dict[Ftm, FtmHeaderTest]]]:
```
Then you call this like `self.test_data("cstdlib")`, which I guess is reasonably readable?
https://github.com/llvm/llvm-project/pull/134542
More information about the libcxx-commits
mailing list