Files
clang-p2996/libc/utils/UnitTest/PrintfMatcher.h
Michael Jones ff1374785f [libc] Add Printf FormatSection Matcher
This patch changes the printf parser tests to use a more robust matcher.
This allows for better debugging of parsing issues. This does not affect
the actual printf code at all, only the tests.

Reviewed By: sivachandra, lntue

Differential Revision: https://reviews.llvm.org/D124130
2022-04-22 14:21:39 -07:00

47 lines
1.5 KiB
C++

//===-- PrintfMatcher.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_UTILS_UNITTEST_PRINTF_MATCHER_H
#define LLVM_LIBC_UTILS_UNITTEST_PRINTF_MATCHER_H
#include "src/stdio/printf_core/core_structs.h"
#include "utils/UnitTest/Test.h"
#include <errno.h>
namespace __llvm_libc {
namespace printf_core {
namespace testing {
class FormatSectionMatcher
: public __llvm_libc::testing::Matcher<FormatSection> {
FormatSection expected;
FormatSection actual;
public:
FormatSectionMatcher(FormatSection expectedValue) : expected(expectedValue) {}
bool match(FormatSection actualValue);
void explainError(testutils::StreamWrapper &stream) override;
};
} // namespace testing
} // namespace printf_core
} // namespace __llvm_libc
#define EXPECT_FORMAT_EQ(expected, actual) \
EXPECT_THAT(actual, __llvm_libc::printf_core::testing::FormatSectionMatcher( \
expected))
#define ASSERT_FORMAT_EQ(expected, actual) \
ASSERT_THAT(actual, __llvm_libc::printf_core::testing::FormatSectionMatcher( \
expected))
#endif // LLVM_LIBC_UTILS_UNITTEST_PRINTF_MATCHER_H