1 /*
2  * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #include <cstdio>
7 #include <CppUTest/CommandLineTestRunner.h>
8 
9 /* These tests are intended to be compiled natively and run on a PC */
main(int argc,char * argv[])10 int main(int argc, char *argv[]) {
11 
12 	return CommandLineTestRunner::RunAllTests(argc, argv);
13 }