[libcxx-commits] [libcxx] [libcxx][test] Remove XFAIL:msvc for no_unique_address in tests (PR #67849)
via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Oct 2 13:53:18 PDT 2023
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {darker}-->
:warning: Python code formatter, darker found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
darker --check --diff -r d0d608383e76ea8931860fb12af7005ab69230cb..b92b950295e94ba23bfd36c906980b8e0f88c91f libcxx/utils/libcxx/test/features.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- features.py 2023-10-02 20:38:38.000000 +0000
+++ features.py 2023-10-02 20:53:10.975620 +0000
@@ -278,13 +278,14 @@
),
Feature(name="msvc", when=_isMSVC),
Feature(name=lambda cfg: "msvc-{}".format(*_msvcVersion(cfg)), when=_isMSVC),
Feature(name=lambda cfg: "msvc-{}.{}".format(*_msvcVersion(cfg)), when=_isMSVC),
Feature(
- name="msvc-no-unique-address", when=lambda cfg: sourceBuilds(
- cfg,
- """
+ name="msvc-no-unique-address",
+ when=lambda cfg: sourceBuilds(
+ cfg,
+ """
struct A { [[msvc::no_unique_address]] A a; };
""",
),
),
]
``````````
</details>
https://github.com/llvm/llvm-project/pull/67849
More information about the libcxx-commits
mailing list