aboutsummaryrefslogtreecommitdiff
path: root/components/app/test-runner/main.cpp
blob: ed48583281d73f4b2e5f52b75918165403b0b2e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
#include <cstdio>
#include <CppUTest/CommandLineTestRunner.h>

/* These tests are intended to be compiled natively and run on a PC */
int main(int argc, char *argv[]) {

	return CommandLineTestRunner::RunAllTests(argc, argv);
}