init commit

This commit is contained in:
2025-06-11 22:45:11 +08:00
commit 71307f3e53
115 changed files with 13922 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#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();
}