[libc-commits] [PATCH] D119183: [libc][Obvious] Suppress unused-variable warnings from syscall_unittest.
Tue Ly via Phabricator via libc-commits
libc-commits at lists.llvm.org
Mon Feb 7 13:22:21 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG57532188526c: [libc][Obvious] Suppress unused-variable warnings from syscall_unittest. (authored by lntue).
Changed prior to commit:
https://reviews.llvm.org/D119183?vs=406581&id=406591#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119183/new/
https://reviews.llvm.org/D119183
Files:
libc/test/src/__support/OSUtil/linux/x86_64/CMakeLists.txt
Index: libc/test/src/__support/OSUtil/linux/x86_64/CMakeLists.txt
===================================================================
--- libc/test/src/__support/OSUtil/linux/x86_64/CMakeLists.txt
+++ libc/test/src/__support/OSUtil/linux/x86_64/CMakeLists.txt
@@ -3,5 +3,7 @@
SUITE libc_osutil_tests
SRCS syscall_test.cpp
DEPENDS
- libc.src.__support.OSUtil.osutil
+ libc.src.__support.OSUtil.osutil
+ COMPILE_OPTIONS
+ -Wno-unused-variable # Only signature tests, declared variables are unused.
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119183.406591.patch
Type: text/x-patch
Size: 517 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20220207/2be13d5a/attachment.bin>
More information about the libc-commits
mailing list