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