Towards the goal of getting `ninja libc-lint` back to green, fix the numerous
instances of:
warning: header guard does not follow preferred style [llvm-header-guard]
This is because many of our header guards start with `__LLVM` rather than
`LLVM`.
To filter just these warnings:
$ ninja -k2000 libc-lint 2>&1 | grep llvm-header-guard
To automatically apply fixits:
$ find libc/src libc/include libc/test -name \*.h | \
xargs -n1 -I {} clang-tidy {} -p build/compile_commands.json \
-checks='-*,llvm-header-guard' --fix --quiet
Some manual cleanup is still necessary as headers that were missing header
guards outright will have them inserted before the license block (we prefer
them after).
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
//===-- MemoryMatcher.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|
|
#define LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|
|
|
|
#include "src/__support/CPP/span.h"
|
|
|
|
#include "test/UnitTest/Test.h"
|
|
|
|
namespace LIBC_NAMESPACE {
|
|
namespace testing {
|
|
|
|
using MemoryView = LIBC_NAMESPACE::cpp::span<const char>;
|
|
|
|
} // namespace testing
|
|
} // namespace LIBC_NAMESPACE
|
|
|
|
#ifdef LIBC_COPT_TEST_USE_FUCHSIA
|
|
|
|
#define EXPECT_MEM_EQ(expected, actual) \
|
|
do { \
|
|
LIBC_NAMESPACE::testing::MemoryView e = (expected); \
|
|
LIBC_NAMESPACE::testing::MemoryView a = (actual); \
|
|
ASSERT_EQ(e.size(), a.size()); \
|
|
EXPECT_BYTES_EQ(e.data(), a.data(), e.size()); \
|
|
} while (0)
|
|
|
|
#define ASSERT_MEM_EQ(expected, actual) \
|
|
do { \
|
|
LIBC_NAMESPACE::testing::MemoryView e = (expected); \
|
|
LIBC_NAMESPACE::testing::MemoryView a = (actual); \
|
|
ASSERT_EQ(e.size(), a.size()); \
|
|
ASSERT_BYTES_EQ(e.data(), a.data(), e.size()); \
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
namespace LIBC_NAMESPACE::testing {
|
|
|
|
class MemoryMatcher : public Matcher<MemoryView> {
|
|
MemoryView expected;
|
|
MemoryView actual;
|
|
bool mismatch_size = false;
|
|
size_t mismatch_index = -1;
|
|
|
|
public:
|
|
MemoryMatcher(MemoryView expectedValue) : expected(expectedValue) {}
|
|
|
|
bool match(MemoryView actualValue);
|
|
|
|
void explainError() override;
|
|
};
|
|
|
|
} // namespace LIBC_NAMESPACE::testing
|
|
|
|
#define EXPECT_MEM_EQ(expected, actual) \
|
|
EXPECT_THAT(actual, LIBC_NAMESPACE::testing::MemoryMatcher(expected))
|
|
#define ASSERT_MEM_EQ(expected, actual) \
|
|
ASSERT_THAT(actual, LIBC_NAMESPACE::testing::MemoryMatcher(expected))
|
|
|
|
#endif
|
|
|
|
#endif // LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|