Imre Kis | ed98e9c | 2019-10-15 16:17:55 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2019, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #include "CppUTest/TestHarness.h" | ||||
8 | extern "C" { | ||||
9 | #include "lib/libc/string.h" | ||||
10 | } | ||||
11 | |||||
12 | TEST_GROUP(memcmp) { | ||||
13 | |||||
14 | }; | ||||
15 | |||||
16 | TEST(memcmp, empty) { | ||||
17 | LONGS_EQUAL(0, memcmp(NULL, NULL, 0)) | ||||
18 | } |