freebsd-skq/contrib/ntp/sntp/tests_main.cpp
cy 8560674afd MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
Thanks to roberto for providing pointers to wedge this into HEAD.

Approved by:	roberto
2015-03-30 13:30:15 +00:00

26 lines
543 B
C++

#include "tests_main.h"
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
init_lib();
init_auth();
// Some tests makes use of extra parameters passed to the tests
// executable. Save these params as static members of the base class.
if (argc > 1) {
ntptest::SetExtraParams(1, argc-1, argv);
}
return RUN_ALL_TESTS();
}
std::vector<std::string> ntptest::m_params;
void ntptest::SetExtraParams(int start, int count, char** argv)
{
for (int i=0; i<count; i++) {
m_params.push_back(argv[i+start]);
}
}