Unit test refactor (#500)

Refactoring and consolidating single-process / multi-process unit testing

[ROCm/rccl commit: 29ad0f5fbe]
This commit is contained in:
gilbertlee-amd
2022-02-25 08:59:07 -07:00
committed by GitHub
parent dfa9b9e958
commit a182076a0e
98 changed files with 3684 additions and 5094 deletions
+11
View File
@@ -0,0 +1,11 @@
#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;
}