Initial draft of the build system

CMake function added for defining unit test suites. Using c-picker for
generating sources files.

Change-Id: I591c80d97bb141f4dd3848b1e289bc82844a508f
Signed-off-by: Imre Kis <imre.kis@arm.com>
diff --git a/tests/lib/libc/test_memcmp.cpp b/tests/lib/libc/test_memcmp.cpp
new file mode 100644
index 0000000..b4eb293
--- /dev/null
+++ b/tests/lib/libc/test_memcmp.cpp
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2019, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include "CppUTest/TestHarness.h"
+extern "C" {
+#include "lib/libc/string.h"
+}
+
+TEST_GROUP(memcmp) {
+
+};
+
+TEST(memcmp, empty) {
+	LONGS_EQUAL(0, memcmp(NULL, NULL, 0))
+}