blob: 64f02c22b0e09dc3becd76134edf280ab6df231c [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(memcpy) {
13
14};
15
16TEST(memcpy, empty) {
17 LONGS_EQUAL(0, memcpy(NULL, NULL, 0))
18}