diff options
| author | Wei Yang <richard.weiyang@gmail.com> | 2024-05-07 07:58:30 +0000 |
|---|---|---|
| committer | Mike Rapoport (IBM) <rppt@kernel.org> | 2024-06-05 10:22:22 +0300 |
| commit | 1a879671bdfd14698a839f30de8e6d76e1e858fd (patch) | |
| tree | 872aadd302d9c592bf730db608ea7a2fce6d3f96 /tools/testing/memblock/tests/common.h | |
| parent | 3aca2cea907c647ee7720b7ba22734f9e8e7cfa3 (diff) | |
| download | linux-next-1a879671bdfd14698a839f30de8e6d76e1e858fd.tar.gz linux-next-1a879671bdfd14698a839f30de8e6d76e1e858fd.zip | |
memblock tests: add memblock_overlaps_region_checks
Add a test case for memblock_overlaps_region().
Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Link: https://lore.kernel.org/r/20240507075833.6346-5-richard.weiyang@gmail.com
Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
Diffstat (limited to 'tools/testing/memblock/tests/common.h')
| -rw-r--r-- | tools/testing/memblock/tests/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/memblock/tests/common.h b/tools/testing/memblock/tests/common.h index 2f26405562b0..e1138e06c903 100644 --- a/tools/testing/memblock/tests/common.h +++ b/tools/testing/memblock/tests/common.h @@ -40,6 +40,9 @@ enum test_flags { assert((_expected) == (_seen)); \ } while (0) +#define ASSERT_TRUE(_seen) ASSERT_EQ(true, _seen) +#define ASSERT_FALSE(_seen) ASSERT_EQ(false, _seen) + /** * ASSERT_NE(): * Check the condition |
