25 lines
734 B
C++
25 lines
734 B
C++
/*********************************************************************
|
|
* _ _ _
|
|
* _ __ | |_ _ | | __ _ | |__ ___
|
|
* | '__|| __|(_)| | / _` || '_ \ / __|
|
|
* | | | |_ _ | || (_| || |_) |\__ \
|
|
* |_| \__|(_)|_| \__,_||_.__/ |___/
|
|
*
|
|
* www.rt-labs.com
|
|
* Copyright 2017 rt-labs AB, Sweden.
|
|
*
|
|
* This software is licensed under the terms of the BSD 3-clause
|
|
* license. See the file LICENSE distributed with this software for
|
|
* full license information.
|
|
********************************************************************/
|
|
|
|
#include <gtest/gtest.h>
|
|
#include "osal.h"
|
|
|
|
OS_MAIN (int argc, char * argv[])
|
|
{
|
|
::testing::InitGoogleTest (&argc, argv);
|
|
int result = RUN_ALL_TESTS();
|
|
return result;
|
|
}
|