Approved by: roberto, delphij Security: VuXML: 0d0f3050-1f69-11e5-9ba9-d050996490d0 Security: http://bugs.ntp.org/show_bug.cgi?id=2853 Security: https://www.kb.cert.org/vuls/id/668167 Security: http://support.ntp.org/bin/view/Main/SecurityNotice#June_2015_NTP_Security_Vulnerabi
30 lines
616 B
C++
30 lines
616 B
C++
#include "tests_main.h"
|
|
|
|
extern "C" {
|
|
const char * Version = "stub unit test Version string";
|
|
};
|
|
|
|
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]);
|
|
}
|
|
}
|