2022-10-14 13:49:16 -06:00
|
|
|
/*************************************************************************
|
|
|
|
|
* Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE.txt for license information
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
2022-02-25 08:59:07 -07:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
#include "EnvVars.hpp"
|
|
|
|
|
#include "TestBed.hpp"
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
|
RcclUnitTesting::EnvVars::ShowConfig();
|
|
|
|
|
int retCode = RUN_ALL_TESTS();
|
|
|
|
|
printf("[ INFO ] Total executed cases: %d\n", RcclUnitTesting::TestBed::NumTestsRun());
|
|
|
|
|
return retCode;
|
|
|
|
|
}
|