[libcxx-commits] [PATCH] D132834: [libcxx] [test] Remove an unnecessary condition in a feature check
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Aug 30 00:09:03 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8e29e379b035: [libcxx] [test] Remove an unnecessary condition in a feature check (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132834/new/
https://reviews.llvm.org/D132834
Files:
libcxx/utils/libcxx/test/features.py
Index: libcxx/utils/libcxx/test/features.py
===================================================================
--- libcxx/utils/libcxx/test/features.py
+++ libcxx/utils/libcxx/test/features.py
@@ -99,7 +99,7 @@
# Check for a Windows UCRT bug (fixed in UCRT/Windows 10.0.19041.0).
# https://developercommunity.visualstudio.com/t/printf-formatting-with-g-outputs-too/1660837
Feature(name='win32-broken-printf-g-precision',
- when=lambda cfg: not '_LIBCPP_HAS_NO_LOCALIZATION' in compilerMacros(cfg) and '_WIN32' in compilerMacros(cfg) and not programSucceeds(cfg, """
+ when=lambda cfg: '_WIN32' in compilerMacros(cfg) and not programSucceeds(cfg, """
#include <stdio.h>
#include <string.h>
int main(int, char**) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132834.456550.patch
Type: text/x-patch
Size: 780 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220830/046c9165/attachment.bin>
More information about the libcxx-commits
mailing list