Files
davinci2/test/unit/dvt_unit_main.cpp
T
2025-06-11 22:45:11 +08:00

15 lines
337 B
C++

#include <stdio.h>
#include <gtest/gtest.h>
//-------------------------------------------------------------------------------------
int main(int argc, char* argv[])
{
testing::InitGoogleTest(&argc, argv);
uint32_t seed = (uint32_t)::time(0);
//seed = 1748961760;
srand(seed);
printf("seed=%d\n", seed);
return RUN_ALL_TESTS();
}